You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Poco::CppParser module has issues parsing classes like this:
cpp file:
#define API_EXPORT __declspec(dllexport)
class API_EXPORT MyClass{};
During normal parsing after preprocessing, it parses "class" as a type and "__declspec" as a variable name.