Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:void

4 void func(void*);
8 virtual void use() { func((void*)this); }
9 Test(Test&c) { func((void*)this); }
10 Test() { func((void*)this); }
13 void useBlock(void (^)(void));
15 int main (void) {
17 useBlock(^(void) { t.use(); });