Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2013-10-29 22:44:33 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-10-29 22:44:33 +0400
commitbd82b7355bad49146260fe8fe8d4a81d96fa2089 (patch)
tree251dec5868cc9c374408f113bc00ceffdea06576 /moses/FF/PhraseLengthFeature.cpp
parentab8402cfe8e6c5e33b9a9807c28519245fe52d4f (diff)
remove description argument from feature function constructor. Redundant
Diffstat (limited to 'moses/FF/PhraseLengthFeature.cpp')
-rw-r--r--moses/FF/PhraseLengthFeature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/FF/PhraseLengthFeature.cpp b/moses/FF/PhraseLengthFeature.cpp
index fb69a2de3..43e0d1b2d 100644
--- a/moses/FF/PhraseLengthFeature.cpp
+++ b/moses/FF/PhraseLengthFeature.cpp
@@ -10,7 +10,7 @@ namespace Moses
using namespace std;
PhraseLengthFeature::PhraseLengthFeature(const std::string &line)
- :StatelessFeatureFunction("PhraseLengthFeature", 0, line)
+ :StatelessFeatureFunction(0, line)
{
ReadParameters();
}