summaryrefslogtreecommitdiff
path: root/boost/uuid/uuid_hash.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/uuid/uuid_hash.hpp')
-rw-r--r--boost/uuid/uuid_hash.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/uuid/uuid_hash.hpp b/boost/uuid/uuid_hash.hpp
index a154871b3f..8fe56bc4cf 100644
--- a/boost/uuid/uuid_hash.hpp
+++ b/boost/uuid/uuid_hash.hpp
@@ -3,7 +3,7 @@
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENCE_1_0.txt)
+// https://www.boost.org/LICENSE_1_0.txt)
//
// std::hash support for uuid
//
@@ -13,7 +13,7 @@
#include <boost/config.hpp>
#include <boost/container_hash/hash.hpp>
-#include <boost/uuid/uuid_io.hpp>
+#include <boost/uuid/uuid.hpp>
#ifdef BOOST_HAS_PRAGMA_ONCE
#pragma once
@@ -31,7 +31,7 @@ namespace std
{
std::size_t operator () (const boost::uuids::uuid& value) const BOOST_NOEXCEPT
{
- return boost::hash_value(to_string(value));
+ return boost::uuids::hash_value(value);
}
};
}