summaryrefslogtreecommitdiff
path: root/decoder/ff.h
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-07 00:07:45 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-07 00:07:45 +0000
commit9db822ad9f2e25d88520e1c61b20052e7dfca6ca (patch)
treee5375c12fc748af98f871cdb453ba48e95379a55 /decoder/ff.h
parentf87b2add497d9033ef468233ea3ec0f33cc97944 (diff)
dynamic fsa ff, factory for fsa and ff shares code, factory moved to ff_factory.cc
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@483 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/ff.h')
-rw-r--r--decoder/ff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ff.h b/decoder/ff.h
index f563fb93..2de3c1fb 100644
--- a/decoder/ff.h
+++ b/decoder/ff.h
@@ -17,7 +17,7 @@ typedef std::vector<WordID> Features; // set of features ids
// FinalTraversalFeatures(...)
class FeatureFunction {
public:
- std::string name; // set by FF factory using usage()
+ std::string name_; // set by FF factory using usage()
bool debug_; // also set by FF factory checking param for immediate initial "debug"
bool debug() const { return debug_; }
FeatureFunction() : state_size_() {}