From 5f7967402a5d3ec4cae584e22a274b6a682a6891 Mon Sep 17 00:00:00 2001 From: Tetsuo Kiso Date: Thu, 10 May 2012 07:16:38 +0900 Subject: [PATCH] Reduce compilation dependencies. --- mert/Scorer.cpp | 1 + mert/Scorer.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mert/Scorer.cpp b/mert/Scorer.cpp index ca36cb96f..e865aa766 100644 --- a/mert/Scorer.cpp +++ b/mert/Scorer.cpp @@ -4,6 +4,7 @@ #include "Vocabulary.h" #include "Util.h" #include "Singleton.h" +#include "PreProcessFilter.h" namespace { diff --git a/mert/Scorer.h b/mert/Scorer.h index 049e39fbd..d89097a6e 100644 --- a/mert/Scorer.h +++ b/mert/Scorer.h @@ -8,10 +8,10 @@ #include #include "Types.h" #include "ScoreData.h" -#include "PreProcessFilter.h" using namespace std; +class PreProcessFilter; class ScoreStats; namespace mert {