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 'moses/TranslationModel/UG/mm/ug_mm_2d_table.h')
-rw-r--r--moses/TranslationModel/UG/mm/ug_mm_2d_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/TranslationModel/UG/mm/ug_mm_2d_table.h b/moses/TranslationModel/UG/mm/ug_mm_2d_table.h
index e2284382e..0ae16895b 100644
--- a/moses/TranslationModel/UG/mm/ug_mm_2d_table.h
+++ b/moses/TranslationModel/UG/mm/ug_mm_2d_table.h
@@ -103,7 +103,7 @@ namespace ugdiss
operator[](ID key) const
{
if (start==stop) return INIT(0);
- Cell const* c = lower_bound(start,stop,key);
+ Cell const* c = std::lower_bound(start,stop,key);
return (c != stop && c->id == key ? c->val : INIT(0));
}