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 <fishandfrolick@gmail.com>2013-03-23 19:58:07 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2013-03-23 19:58:07 +0400
commitdb005f6503a5179e0427b460d8039e8920c8d65b (patch)
treedaa6e2e171f9a5dd9a107cdcefef6f13a445d2eb /moses-cmd
parent3a4e63c558a5d5beaefbb2e45497b66e4d9ae72f (diff)
compile error caused by different versions of boost
Diffstat (limited to 'moses-cmd')
-rw-r--r--moses-cmd/Main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses-cmd/Main.cpp b/moses-cmd/Main.cpp
index 8fd46ba38..ef85fd66b 100644
--- a/moses-cmd/Main.cpp
+++ b/moses-cmd/Main.cpp
@@ -192,12 +192,12 @@ public:
string hypergraphDir;
if ( hypergraphParameters.size() > 2 ) {
- hypergraphDir = hypergraphParameters[2];
+ hypergraphDir = hypergraphParameters[2];
} else {
string nbestFile = staticData.GetNBestFilePath();
if ( ! nbestFile.empty() && nbestFile!="-" && !boost::starts_with(nbestFile,"/dev/stdout") ) {
boost::filesystem::path nbestPath(nbestFile);
- hypergraphDir = nbestPath.parent_path().filename();
+ //hypergraphDir = nbestPath.parent_path().filename();
} else {
stringstream hypergraphDirName;
hypergraphDirName << boost::filesystem::current_path() << "/hypergraph";