remove SQLITECPP_API pragma messages

pragma message shows as a warning during the build compilation
This commit is contained in:
Jonathan Guzmán 2023-04-01 13:21:29 -06:00
parent 3ef5b1d238
commit 6745726698
No known key found for this signature in database
GPG Key ID: C2956F1668BA042A

View File

@ -21,10 +21,8 @@
#if defined(_WIN32)&& !defined(__GNUC__) && defined(SQLITECPP_COMPILE_DLL)
#if SQLITECPP_DLL_EXPORT
#define SQLITECPP_API __declspec(dllexport)
#pragma message("Exporting symbols")
#else
#define SQLITECPP_API __declspec(dllimport)
#pragma message("Importing symbols")
#endif
#else
#if __GNUC__ >= 4