📄 crash36.c
字号:
// Build don't link:// Copyright (C) 2000 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 7 Nov 2000 <nathan@codesourcery.com>// Bug 573. We ICE'd verifying operator new and operator delete conformed// to the standard's expectation.void *operator new (__SIZE_TYPE__); // okvoid operator new (__SIZE_TYPE__); // ERROR - must return void *void *operator new (); // ERROR - must take size_tvoid *operator new (char); // ERROR - must take size_tvoid *operator new (__SIZE_TYPE__, ...) throw(); // okvoid operator delete (void *) throw (); // okint operator delete (void *) throw (); // ERROR - must return voidvoid operator delete () throw (); // ERROR - must take void *void operator delete (int *) throw (); // ERROR - must take void *void operator delete (void *, __SIZE_TYPE__) throw (); // okvoid operator delete (...) throw (); // ERROR - must take void *void operator delete (void *, ...) throw (); // ok
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -