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 <hieu@hoang.co.uk>2013-07-08 23:52:14 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-07-08 23:52:14 +0400
commit310b26f9896bf75b1e7060223274f723189dcd72 (patch)
tree9b4c3719706a76e1a0c6f9e4f3a70beee7ef15cc /moses/LVoc.h
parent3eba5782c2df7b03cf2dad99b52e0a97c0ca39e9 (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 5f5423832..485e3f481 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;