Don't export methods on already exported classes.

This is always a mistake.
This commit is contained in:
Stephen Kelly
2011-08-11 10:54:21 +02:00
parent 750b67c5a1
commit 1590d5fe4f
3 changed files with 1 additions and 10 deletions
@@ -8,12 +8,7 @@ class LIBSHARED_EXPORT Libshared {
public:
int libshared() const;
#ifdef COMPILER_IS_MSVC
// Double exporting not possible with MSVC
int libshared_exported() const;
#else
int LIBSHARED_EXPORT libshared_exported() const;
#endif
int LIBSHARED_DEPRECATED libshared_deprecated() const;