From 6745726698330b7fe177c51f77f40cc8d080493e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Guzm=C3=A1n?= Date: Sat, 1 Apr 2023 13:21:29 -0600 Subject: [PATCH] remove SQLITECPP_API pragma messages pragma message shows as a warning during the build compilation --- include/SQLiteCpp/SQLiteCppExport.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/SQLiteCpp/SQLiteCppExport.h b/include/SQLiteCpp/SQLiteCppExport.h index 8629306..4aa1e52 100644 --- a/include/SQLiteCpp/SQLiteCppExport.h +++ b/include/SQLiteCpp/SQLiteCppExport.h @@ -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