-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Assignees
@virtuald
Description
class Foo {
std::function<void()> fn;
};
Is a function. The following would be interpreted incorrectly also, and I imagine adding function parameters would break also:
class Foo {
std::function<void()> getFn();
};