Commit 8d683375 by Jason Merrill

* g++.dg/init/elide5.C: Don't use unsigned long for size_t.

From-SVN: r238728
parent 007b405b
// PR c++/71913 // PR c++/71913
// { dg-do link { target c++11 } } // { dg-do link { target c++11 } }
void* operator new(unsigned long, void* p) { return p; } void* operator new(decltype(sizeof(1)), void* p) { return p; }
struct IndirectReturn { struct IndirectReturn {
IndirectReturn() {} IndirectReturn() {}
...@@ -24,4 +24,3 @@ int main() ...@@ -24,4 +24,3 @@ int main()
{ {
bar(c); bar(c);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment