summaryrefslogtreecommitdiff
path: root/decoder/ff_lm.h
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-05 18:53:00 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-05 18:53:00 +0000
commit4955a3d76a535fad2a3f9e504f2eeeefc0a266fd (patch)
tree66fa07cf018d36e0a8745568488a4025c8961684 /decoder/ff_lm.h
parent36778292e0e98d9b5307a38104f1e99aad7c3aa4 (diff)
comment unused var names, todo
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@133 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/ff_lm.h')
-rw-r--r--decoder/ff_lm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ff_lm.h b/decoder/ff_lm.h
index 45fc1da7..10a3e9a3 100644
--- a/decoder/ff_lm.h
+++ b/decoder/ff_lm.h
@@ -26,7 +26,7 @@ class LanguageModel : public FeatureFunction {
SparseVector<double>* estimated_features,
void* out_context) const;
private:
- const int fid_;
+ int fid_; // conceptually const; mutable only to simplify constructor
mutable LanguageModelImpl* pimpl_;
};