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:
authorEva Hasler <ehasler@saxnot.inf.ed.ac.uk>2012-06-07 14:16:52 +0400
committerEva Hasler <ehasler@saxnot.inf.ed.ac.uk>2012-06-07 14:16:52 +0400
commite1c1a5343c6b15a38370885c851786b3d5109140 (patch)
tree14e965d9b6d4b28712d530e17892aa3fe7fd8827 /misc
parent3c1728f30d74f7b7e1e7b04f639aa286c6f23264 (diff)
parent3c44d04baf6f4cdb938ac4e4e318b0591d3f553a (diff)
merge
Diffstat (limited to 'misc')
-rw-r--r--misc/processLexicalTable.vcxproj4
-rw-r--r--misc/queryLexicalTable.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/misc/processLexicalTable.vcxproj b/misc/processLexicalTable.vcxproj
index cb32fb1c4..bdb2719fd 100644
--- a/misc/processLexicalTable.vcxproj
+++ b/misc/processLexicalTable.vcxproj
@@ -58,7 +58,7 @@
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
</ClCompile>
<Link>
- <AdditionalDependencies>zdll.lib;$(SolutionDir)$(Configuration)\moses.lib;$(SolutionDir)$(Configuration)\kenlm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <AdditionalDependencies>zdll.lib;$(SolutionDir)$(Configuration)\moses.lib;%(AdditionalDependencies)</AdditionalDependencies>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
@@ -78,7 +78,7 @@
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link>
- <AdditionalDependencies>zdll.lib;$(SolutionDir)$(Configuration)\moses.lib;$(SolutionDir)$(Configuration)\kenlm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <AdditionalDependencies>zdll.lib;$(SolutionDir)$(Configuration)\moses.lib;%(AdditionalDependencies)</AdditionalDependencies>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
diff --git a/misc/queryLexicalTable.cpp b/misc/queryLexicalTable.cpp
index 166549267..45eb68867 100644
--- a/misc/queryLexicalTable.cpp
+++ b/misc/queryLexicalTable.cpp
@@ -24,7 +24,7 @@ void printHelp()
std::ostream& operator<<(std::ostream& o, Scores s)
{
- for(int i = 0; i < s.size(); ++i) {
+ for(size_t i = 0; i < s.size(); ++i) {
o << s[i] << " ";
}
//o << std::endln;