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 <hieuhoang@gmail.com>2013-07-08 23:25:47 +0400
committerHieu Hoang <hieuhoang@gmail.com>2013-07-08 23:25:47 +0400
commit3eba5782c2df7b03cf2dad99b52e0a97c0ca39e9 (patch)
tree6f434c72db57d5b21b7cdcd64b4cdc8ebf62e2a0 /moses/LVoc.h
parent2203bb328470cc6657c8c2dcbbbfaa2730ff2b9d (diff)
beautify
Diffstat (limited to 'moses/LVoc.h')
-rw-r--r--moses/LVoc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/LVoc.h b/moses/LVoc.h
index 485e3f481..5f5423832 100644
--- a/moses/LVoc.h
+++ b/moses/LVoc.h
@@ -38,7 +38,7 @@ public:
}
LabelId add(const Key& k) {
std::pair<typename M::iterator,bool> p
- =m.insert(std::make_pair(k,data.size()));
+ =m.insert(std::make_pair(k,data.size()));
if(p.second) data.push_back(k);
CHECK(static_cast<size_t>(p.first->second)<data.size());
return p.first->second;