robotpy / robotpy-cppheaderparser

DEPRECATED: use cxxheaderparser instead
Other
123 stars 39 forks source link

std::function isn't interpreted correctly #36

Open virtuald opened 4 years ago

virtuald commented 4 years ago
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();
};