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:
Diffstat (limited to 'moses/TranslationModel/DynSAInclude/params.cpp')
-rw-r--r--moses/TranslationModel/DynSAInclude/params.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/TranslationModel/DynSAInclude/params.cpp b/moses/TranslationModel/DynSAInclude/params.cpp
index 27cf06a51..4696258f8 100644
--- a/moses/TranslationModel/DynSAInclude/params.cpp
+++ b/moses/TranslationModel/DynSAInclude/params.cpp
@@ -65,10 +65,10 @@ bool Parameters::loadParams(int argc, char ** argv)
if( getValueType(param) == kBoolValue ) {
jumpBy = 1;
UTIL_THROW_IF2(!setParamValue(param, kTrueValue),
- "Couldn't set parameter " << param);
+ "Couldn't set parameter " << param);
} else { //not of type bool so must have corresponding value
UTIL_THROW_IF2(i+1 >= argc,
- "Out of bound error: " << i+1);
+ "Out of bound error: " << i+1);
jumpBy = 2;
std::string val = argv[i+1];