summaryrefslogtreecommitdiff
path: root/test/std/utilities/function.objects/unord.hash/integral.pass.cpp
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-01-13 20:04:50 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-01-13 20:04:50 +0000
commit043da5ce84d67963aeeba7fa694033d953da16b6 (patch)
tree3c4458a6b76e9cd8c148af1c65e08b5afc63c0ed /test/std/utilities/function.objects/unord.hash/integral.pass.cpp
parent722ebc7ad794cf56284863322f8220e769093709 (diff)
Notes
Diffstat (limited to 'test/std/utilities/function.objects/unord.hash/integral.pass.cpp')
-rw-r--r--test/std/utilities/function.objects/unord.hash/integral.pass.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/std/utilities/function.objects/unord.hash/integral.pass.cpp b/test/std/utilities/function.objects/unord.hash/integral.pass.cpp
index d3db45fad7c08..c20f31ff2c996 100644
--- a/test/std/utilities/function.objects/unord.hash/integral.pass.cpp
+++ b/test/std/utilities/function.objects/unord.hash/integral.pass.cpp
@@ -21,6 +21,7 @@
#include <functional>
#include <cassert>
#include <type_traits>
+#include <cstddef>
#include <limits>
template <class T>
@@ -59,7 +60,7 @@ int main()
test<unsigned long long>();
// LWG #2119
- test<ptrdiff_t>();
+ test<std::ptrdiff_t>();
test<size_t>();
test<int8_t>();