Ubuntu Pastebin

Paste from RAOF at Fri, 3 Jul 2015 07:15:54 +0000

Download as text
1
2
3
4
5
6
7
8
bool called{false};
auto foo = make_trampoline([&called]() { called = true; });

void (*decayed)() = foo.as_fn_ptr();

(*decayed)();

// called is now true;
Download as text