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 'phrase-extract')
-rw-r--r--phrase-extract/ScoreFeatureTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/phrase-extract/ScoreFeatureTest.cpp b/phrase-extract/ScoreFeatureTest.cpp
index f82448ab0..28dd0e981 100644
--- a/phrase-extract/ScoreFeatureTest.cpp
+++ b/phrase-extract/ScoreFeatureTest.cpp
@@ -118,7 +118,7 @@ BOOST_AUTO_TEST_CASE(manager_config_domain)
s.insert(4);
s.insert(1);
- for (auto i: s) {
+for (auto i: s) {
cerr << i << " ";
}
@@ -127,7 +127,7 @@ BOOST_AUTO_TEST_CASE(manager_config_domain)
m["ba"] = 6;
m["aabc"] = 7;
- for (auto i: m) {
+for (auto i: m) {
cerr << i.first << "=" << i.second << " ";
}
@@ -135,6 +135,6 @@ BOOST_AUTO_TEST_CASE(manager_config_domain)
std::string s1 = "x", s2 = "aa", s3 = "bb", s4 = "yy";
std::string ssum = adder(s1, s2, s3, s4);
-
+
}