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
path: root/util
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-07-02 03:31:11 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-07-02 03:31:11 +0300
commit515862ee1c1d89f604759cb5cefa7eeb452a3fba (patch)
tree48305de7daa32c4de0a68fd7abfb4f8388af36b3 /util
parent106668d754ca66aa97a4a7ec1b6edf5a9964d688 (diff)
Reformatting for readability.
Diffstat (limited to 'util')
-rw-r--r--util/probing_hash_table.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/probing_hash_table.hh b/util/probing_hash_table.hh
index f32b64ea3..f4192577b 100644
--- a/util/probing_hash_table.hh
+++ b/util/probing_hash_table.hh
@@ -92,7 +92,8 @@ template <class EntryT, class HashT, class EqualT = std::equal_to<typename Entry
Key got(i->GetKey());
if (equal_(got, t.GetKey())) { out = i; return true; }
if (equal_(got, invalid_)) {
- UTIL_THROW_IF(++entries_ >= buckets_, ProbingSizeException, "Hash table with " << buckets_ << " buckets is full.");
+ UTIL_THROW_IF(++entries_ >= buckets_, ProbingSizeException,
+ "Hash table with " << buckets_ << " buckets is full.");
*i = t;
out = i;
return false;