Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように書くにはどうすればよいですか。
typedef void (^T)(void); T f() { return ^{}; }
typedefなしで?
void (^f())(void) { return ^{}; }
この形式では戻り値の型がわかりにくいため、typedef を保持することをお勧めします。