diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-01-13 20:04:50 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-01-13 20:04:50 +0000 | 
| commit | 043da5ce84d67963aeeba7fa694033d953da16b6 (patch) | |
| tree | 3c4458a6b76e9cd8c148af1c65e08b5afc63c0ed /test/std/utilities/function.objects | |
| parent | 722ebc7ad794cf56284863322f8220e769093709 (diff) | |
Notes
Diffstat (limited to 'test/std/utilities/function.objects')
| -rw-r--r-- | test/std/utilities/function.objects/unord.hash/integral.pass.cpp | 3 | 
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 d3db45fad7c0..c20f31ff2c99 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>(); | 
