?? cleanup2.c
字號:
// PR c++/12526// We decided that the call to strcmp has no side-effects because strcmp is// pure, even though the first argument has side-effects. As a result, we// stripped the CLEANUP_POINT_EXPR. Hilarity ensued.extern "C" int strcmp (const char *, const char *);struct A { A(int); const char *str(); ~A();};void printQueryI(){ if(!strcmp(A(1).str(), "foo")) { }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -