+2019-06-10 Jakub Jelinek <jakub@redhat.com>
+
+ PR testsuite/90772
+ * g++.dg/cpp1y/feat-cxx14.C: Use std::size_t instead of size_t.
+ * g++.dg/cpp1z/feat-cxx1z.C: Likewise.
+ * g++.dg/cpp2a/feat-cxx2a.C: Likewise.
+ * g++.dg/cpp1z/pr85569.C: Include <functional>.
+ * g++.dg/tree-ssa/pr80293.C: Include <cstdint>.
+ * g++.dg/tree-ssa/pr69336.C: Include <stdexcept>.
+
2019-06-10 Jonathan Wakely <jwakely@redhat.com>
PR other/90695
#if __has_include(<array>)
# define STD_ARRAY 1
# include <array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
using array = std::array<_Tp, _Num>;
#elif __has_include(<tr1/array>)
# define TR1_ARRAY 1
# include <tr1/array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
typedef std::tr1::array<_Tp, _Num> array;
#endif
#if __has_include(<array>)
# define STD_ARRAY 1
# include <array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
using array = std::array<_Tp, _Num>;
#elif __has_include(<tr1/array>)
# define TR1_ARRAY 1
# include <tr1/array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
typedef std::tr1::array<_Tp, _Num> array;
#endif
#include <utility>
#include <tuple>
+#include <functional>
#define LIFT_FWD(x) std::forward<decltype(x)>(x)
#if __has_include(<array>)
# define STD_ARRAY 1
# include <array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
using array = std::array<_Tp, _Num>;
#elif __has_include(<tr1/array>)
# define TR1_ARRAY 1
# include <tr1/array>
- template<typename _Tp, size_t _Num>
+ template<typename _Tp, std::size_t _Num>
typedef std::tr1::array<_Tp, _Num> array;
#endif
#include <array>
#include <utility>
+#include <stdexcept>
template<class Key, class T, size_t N> struct static_map
// { dg-options "-O2 -std=gnu++11 -fdump-tree-optimized" } */
#include <array>
+#include <cstdint>
// Return a copy of the underlying memory of an arbitrary value.
template <