One more missing std:: qualification from Jonathan

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@257506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2016-01-12 19:15:10 +00:00
parent e5e9bff62a
commit 4f4a07d66a

View File

@@ -21,6 +21,7 @@
#include <functional> #include <functional>
#include <cassert> #include <cassert>
#include <type_traits> #include <type_traits>
#include <cstddef>
#include <limits> #include <limits>
template <class T> template <class T>
@@ -59,7 +60,7 @@ int main()
test<unsigned long long>(); test<unsigned long long>();
// LWG #2119 // LWG #2119
test<ptrdiff_t>(); test<std::ptrdiff_t>();
test<size_t>(); test<size_t>();
test<int8_t>(); test<int8_t>();