* g++.dg/ext/pr34829.C (operator new): Use size_t instead of
unsigned int for the first argument.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131756
138bc75d-0d04-0410-961f-
82ee72b054a4
+2008-01-23 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/34829
+ * g++.dg/ext/pr34829.C (operator new): Use size_t instead of
+ unsigned int for the first argument.
+
2008-01-22 Jakub Jelinek <jakub@redhat.com>
PR c++/33984
2008-01-22 Tom Tromey <tromey@redhat.com>
- PR c++/34859:
+ PR c++/34859
* gcc.dg/cpp/pr34859.c: New file.
2008-01-22 Paul Thomas <pault@gcc.gnu.org>
2008-01-22 Tom Tromey <tromey@redhat.com>
- PR c++/34829:
+ PR c++/34829
* g++.dg/ext/pr34829.C: New file.
2008-01-22 Jakub Jelinek <jakub@redhat.com>
typedef __java_byte jbyte;
}
-void *operator new (unsigned int s, void *m)
+typedef __SIZE_TYPE__ size_t;
+
+void *operator new (size_t, void *m)
{
return m;
}