* g++.dg/cpp1y/lambda-generic-83856.C: Use __SIZE_TYPE__.
authorMarek Polacek <polacek@redhat.com>
Mon, 3 Dec 2018 16:06:54 +0000 (16:06 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Mon, 3 Dec 2018 16:06:54 +0000 (16:06 +0000)
From-SVN: r266760

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp1y/lambda-generic-83856.C

index e2b8455..afe837f 100644 (file)
@@ -1,3 +1,7 @@
+2018-12-03  Marek Polacek  <polacek@redhat.com>
+
+       * g++.dg/cpp1y/lambda-generic-83856.C: Use __SIZE_TYPE__.
+
 2018-12-03  Ed Schonberg  <schonberg@adacore.com>
 
        * gnat.dg/array33.adb: New testcase.
index ab82b62..e1f1394 100644 (file)
@@ -7,7 +7,7 @@ template <class _E> class initializer_list {
   _E *_M_len;
 
 public:
-  unsigned long size;
+  __SIZE_TYPE__ size;
   _E begin();
 };
 template <typename, unsigned> struct array { void operator[](long); };