diff options
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/XmlPacket.h | 1 | ||||
-rw-r--r-- | src/Common/export.h | 15 |
2 files changed, 2 insertions, 14 deletions
diff --git a/src/Common/XmlPacket.h b/src/Common/XmlPacket.h index 9d63075..1902f82 100644 --- a/src/Common/XmlPacket.h +++ b/src/Common/XmlPacket.h @@ -305,7 +305,6 @@ class MAD_COMMON_EXPORT XmlPacket { typedef value_type *pointer; typedef long difference_type; - private: IteratorType it; diff --git a/src/Common/export.h b/src/Common/export.h index 71207d3..532f3eb 100644 --- a/src/Common/export.h +++ b/src/Common/export.h @@ -1,22 +1,11 @@ #ifndef MAD_COMMON_EXPORT # ifdef _WIN32 # ifdef MAD_COMMON_EXPORTS -# define MAD_COMMON_EXPORT _declspec(dllexport) +# define MAD_COMMON_EXPORT __declspec(dllexport) # else -# define MAD_COMMON_EXPORT _declspec(dllimport) +# define MAD_COMMON_EXPORT __declspec(dllimport) # endif # else # define MAD_COMMON_EXPORT # endif - -# ifdef MAD_COMMON_EXPORTS -# ifndef MAD_NET_EXPORTS -# define MAD_NET_EXPORTS -# endif -# else -# undef MAD_NET_EXPORTS -# endif - -# include <Net/export.h> - #endif |