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
path: root/moses
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2015-02-19 00:56:48 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-02-19 00:56:48 +0300
commit6d4bad0f78ede5bcf7eaaea1de584f42bce8e91f (patch)
tree7827dd5bb6e58a35e22b5971b42b6d3e74ad4862 /moses
parentadd14db3303b122ed155d91f96edb701dcc0457f (diff)
parent357f33b0d5e6dbd1d977e5553d6d1036c4dd9178 (diff)
Merge branch 'master' of github.com:moses-smt/mosesdecoder
Diffstat (limited to 'moses')
-rw-r--r--moses/ChartManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/ChartManager.cpp b/moses/ChartManager.cpp
index d183c97e6..aa550e48b 100644
--- a/moses/ChartManager.cpp
+++ b/moses/ChartManager.cpp
@@ -699,7 +699,7 @@ void ChartManager::OutputUnknowns(OutputCollector *collector) const
std::ostringstream out;
for (std::vector<Phrase*>::const_iterator p = oovs.begin();
p != oovs.end(); ++p) {
- out << *p;
+ out << **p;
}
out << std::endl;
collector->Write(translationId, out.str());