From edf90f703fe9c787454a66dec65fe7894a92779a Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sat, 11 May 2013 19:14:25 -0700 Subject: [PATCH] c++03 fix. --- src/cpp/ripple/PathDB.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpp/ripple/PathDB.h b/src/cpp/ripple/PathDB.h index 0a22843c10..0cc1effe16 100644 --- a/src/cpp/ripple/PathDB.h +++ b/src/cpp/ripple/PathDB.h @@ -69,11 +69,13 @@ public: const uint160& currencyTo, const uint160& issuerTo); }; +#ifdef C11X extern std::size_t hash_value(const currencyIssuer_ct& ci) { std::size_t r = hash_value(ci.second); return ci.first.hash_combine(r); } +#endif static inline std::size_t hash_value(const currencyIssuer_t& ci) {