From 468516ed714e2abb020966435ef2f4604f0289d7 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 14 Jun 2016 17:24:30 -0700 Subject: [PATCH] Fix a typo in a comment; fixes https://svn.boost.org/trac/boost/ticket/12270 --- include/boost/functional/hash/hash.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/functional/hash/hash.hpp b/include/boost/functional/hash/hash.hpp index 40954bc..6e86403 100644 --- a/include/boost/functional/hash/hash.hpp +++ b/include/boost/functional/hash/hash.hpp @@ -228,7 +228,7 @@ namespace boost } -// Don't define 64-bit hash combine on platforms with 64 bit integers, +// Don't define 64-bit hash combine on platforms without 64 bit integers, // and also not for 32-bit gcc as it warns about the 64-bit constant. #if !defined(BOOST_NO_INT64_T) && \ !(defined(__GNUC__) && ULONG_MAX == 0xffffffff)