summaryrefslogtreecommitdiff
path: root/decoder/ff_factory.cc
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-23 23:10:34 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-23 23:10:34 +0000
commit5f9c85a6072d64b10879feafc040374e274027eb (patch)
treecebeb55f05e770bd8b1983821312c1856caec0a8 /decoder/ff_factory.cc
parenta4187c028432c9f9ec3693747abc1c52ef310deb (diff)
strip debug param from feature spec; debug info on from_fsa Init
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@393 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/ff_factory.cc')
-rw-r--r--decoder/ff_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ff_factory.cc b/decoder/ff_factory.cc
index a6d834e0..cc07b2f2 100644
--- a/decoder/ff_factory.cc
+++ b/decoder/ff_factory.cc
@@ -35,7 +35,7 @@ shared_ptr<FeatureFunction> FFRegistry::Create(const string& ffname, const strin
int pl=debug_pre.size();
bool space=false;
std::string p=param;
- bool debug=match_begin(p,debug_pre)&&(p.size()==pl||(space=p[pl]==' '));
+ bool debug=match_begin(p,debug_pre)&&(p.size()==pl||(space=(p[pl]==' '));
if (debug) {
p.erase(0,debug_pre.size()+space);
cerr<<"debug enabled for "<<ffname<< " - rest of param='"<<p<<"'\n";