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/misc
diff options
context:
space:
mode:
authorsarst <sarst@1f5c12ca-751b-0410-a591-d2e778427230>2010-01-28 18:29:11 +0300
committersarst <sarst@1f5c12ca-751b-0410-a591-d2e778427230>2010-01-28 18:29:11 +0300
commit4b40d26e0fc2880654820e7bd9b2bad47b99471c (patch)
treeafe5fc72e6c5d4c634b1716fe4fc3531fb997f55 /misc
parent42275ef916248ee87eaaaaa417f3524fa5325c7e (diff)
updated quearyLexicalTable.cpp to fix compilation error
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/branches/hierarchical-reo@2715 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'misc')
-rw-r--r--misc/queryLexicalTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/queryLexicalTable.cpp b/misc/queryLexicalTable.cpp
index 0ebf66910..97e6d29bf 100644
--- a/misc/queryLexicalTable.cpp
+++ b/misc/queryLexicalTable.cpp
@@ -21,7 +21,7 @@ void printHelp(){
"\n";
}
-std::ostream& operator<<(std::ostream& o, Score s){
+std::ostream& operator<<(std::ostream& o, Scores s){
for(int i = 0; i < s.size(); ++i){
o << s[i] << " ";
}