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:
authorNicola Bertoldi <bertoldi@fbk.eu>2013-08-12 01:41:23 +0400
committerNicola Bertoldi <bertoldi@fbk.eu>2013-08-12 01:41:23 +0400
commit5868653bd616e87b3de20a309ef3a55813a72282 (patch)
tree87b31ed74f23cf7e2d4bc3c6a39fa467e83550c9 /moses/LVoc.h
parent741122730532a800d7d88d8f7f742ffdc8fd1f54 (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;