2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
gcc/
* array-traits.h (array_traits<T[N]>::size): Remove parameter name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@275805
138bc75d-0d04-0410-961f-
82ee72b054a4
+2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
+
+ * array-traits.h (array_traits<T[N]>::size): Remove parameter name.
+
2019-09-17 Richard Biener <rguenther@suse.de>
PR debug/91772
static const bool has_constant_size = true;
static const size_t constant_size = N;
static const T *base (const T (&x)[N]) { return x; }
- static size_t size (const T (&x)[N]) { return N; }
+ static size_t size (const T (&)[N]) { return N; }
};
#endif