From 646cface46b926a719d658a8dda94bc4b31a0d66 Mon Sep 17 00:00:00 2001 From: Nicholas O'Connor Date: Wed, 15 May 2019 10:31:23 -0700 Subject: [PATCH] remove extraneous dll.hpp --- include/dll.hpp | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 include/dll.hpp diff --git a/include/dll.hpp b/include/dll.hpp deleted file mode 100644 index 7280225..0000000 --- a/include/dll.hpp +++ /dev/null @@ -1,24 +0,0 @@ -#if defined _WIN32 || defined __CYGWIN__ - #ifdef BUILDING_DLL - #ifdef __GNUC__ - #define DLL_PUBLIC __attribute__ ((dllexport)) - #else - #define DLL_PUBLIC __declspec(dllexport) // Note: actually gcc seems to also supports this syntax. - #endif - #else - #ifdef __GNUC__ - #define DLL_PUBLIC __attribute__ ((dllimport)) - #else - #define DLL_PUBLIC __declspec(dllimport) // Note: actually gcc seems to also supports this syntax. - #endif - #endif - #define DLL_LOCAL -#else - #if __GNUC__ >= 4 - #define DLL_PUBLIC __attribute__ ((visibility ("default"))) - #define DLL_LOCAL __attribute__ ((visibility ("hidden"))) - #else - #define DLL_PUBLIC - #define DLL_LOCAL - #endif -#endif