From 515862ee1c1d89f604759cb5cefa7eeb452a3fba Mon Sep 17 00:00:00 2001 From: Ulrich Germann Date: Thu, 2 Jul 2015 01:31:11 +0100 Subject: Reformatting for readability. --- util/probing_hash_table.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util') 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 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; -- cgit v1.2.3