From a3f52a5a04e448b8fcb3c61f1c96da620f2c5d3a Mon Sep 17 00:00:00 2001 From: Niels Date: Mon, 16 Feb 2015 22:54:07 +0100 Subject: [PATCH] minor change to make code more portable --- src/json.hpp | 2 +- src/json.hpp.re2c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 709231bfa..595f5b2d2 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -3800,7 +3800,7 @@ struct hash inline size_t operator()(const nlohmann::json& j) const { // a naive hashing via the string representation - return hash()(j.dump()); + return hash()(j.dump()); } }; } diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c index 04d281d56..4f718bbaf 100644 --- a/src/json.hpp.re2c +++ b/src/json.hpp.re2c @@ -3149,7 +3149,7 @@ struct hash inline size_t operator()(const nlohmann::json& j) const { // a naive hashing via the string representation - return hash()(j.dump()); + return hash()(j.dump()); } }; }