diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-01-12 19:15:10 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-01-12 19:15:10 +0000 |
commit | df5ddf2c7a60adb19a83dc046feefd805918973d (patch) | |
tree | 8eeb3d4ac2cf5195d0fa8b6a0612c535fcb26aac /libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp | |
parent | 1d68e80f26f94a3a9338037efd70d5fbab099bc8 (diff) | |
download | bcm5719-llvm-df5ddf2c7a60adb19a83dc046feefd805918973d.tar.gz bcm5719-llvm-df5ddf2c7a60adb19a83dc046feefd805918973d.zip |
One more missing std:: qualification from Jonathan
llvm-svn: 257506
Diffstat (limited to 'libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp b/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp index d3db45fad7c..c20f31ff2c9 100644 --- a/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp +++ b/libcxx/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>(); |