aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/hash/hash_testing.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/hash/hash_testing.h')
-rw-r--r--absl/hash/hash_testing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/absl/hash/hash_testing.h b/absl/hash/hash_testing.h
index 52bcb55..06d0949 100644
--- a/absl/hash/hash_testing.h
+++ b/absl/hash/hash_testing.h
@@ -190,7 +190,9 @@ VerifyTypeImplementsAbslHashCorrectly(const Container& values, Eq equals) {
struct Info {
const V& value;
size_t index;
- std::string ToString() const { return absl::visit(PrintVisitor{index}, value); }
+ std::string ToString() const {
+ return absl::visit(PrintVisitor{index}, value);
+ }
SpyHashState expand() const { return absl::visit(ExpandVisitor{}, value); }
};