cond.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 24 行
C
24 行
// PR c++/8080// Bug: the transformation in finish_while_stmt_cond produced something// that tsubst_expr handled badly. Fixed by not doing the transformation// while parsing a template.class TObject {};struct TIter { TObject *operator()();};template<class T>void get_root_object(TIter& iobj) { while ( TObject* pnew_obj = iobj() ) ;}void foo(TIter& iobj){ get_root_object<int>(iobj);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?