From 47ac8a474d2746d59615fff0e42819295d6fa195 Mon Sep 17 00:00:00 2001 From: Tetsuo Kiso Date: Mon, 20 Feb 2012 09:46:08 +0900 Subject: Change the naming conventions for the guard macros; Rename TER directory. This change might be useful to avoid duplicating the names. The reason is that although MERT programs are standalone applications, some header files such as data.h and point.h have common guard macro names like "DATA_H" and "POINT_H", and this is not good naming conventions when you want to include external headers. Some files actually include headers in Moses and KenLM's util. --- mert/BleuScorer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mert/BleuScorer.h') diff --git a/mert/BleuScorer.h b/mert/BleuScorer.h index 5f105add2..9875b9c52 100644 --- a/mert/BleuScorer.h +++ b/mert/BleuScorer.h @@ -1,5 +1,5 @@ -#ifndef __BLEUSCORER_H__ -#define __BLEUSCORER_H__ +#ifndef MERT_BLEU_SCORER_H_ +#define MERT_BLEU_SCORER_H_ #include #include @@ -80,4 +80,4 @@ private: BleuScorer& operator=(const BleuScorer&); }; -#endif // __BLEUSCORER_H__ +#endif // MERT_BLEU_SCORER_H_ -- cgit v1.2.3