Skip to content

Commit

Permalink
fix(CppParser): Add missing declarations for CppParser_API (#4393, #3331
Browse files Browse the repository at this point in the history
)
  • Loading branch information
matejk committed Jan 15, 2024
1 parent e2520a1 commit 4627231
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions CppParser/include/Poco/CppParser/CppParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@
#endif


#if !defined(CppParser_API)
#define CppParser_API
#if !defined(ActiveRecordLib_API)
#if !defined(POCO_NO_GCC_API_ATTRIBUTE) && defined (__GNUC__) && (__GNUC__ >= 4)
#define CppParser_API __attribute__ ((visibility ("default")))
#else
#define CppParser_API
#endif
#endif


Expand Down

0 comments on commit 4627231

Please sign in to comment.