summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-30 10:40:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-30 10:40:37 +0200
commita29efdc0489df61a4ad6b717d93775a7c244596f (patch)
treeeceb2e7efbc270b0ea70f3212a9bbb2484f22747
parente80f1f1987d7be27f1b4277ddc0a12f348fa53d6 (diff)
All-inline template should not be TOOLS_DLLPUBLIC, keep MSVC happy
Change-Id: Ib03c6ba0eac9400eba89674ca92f638baf65b203
-rw-r--r--include/tools/link.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/tools/link.hxx b/include/tools/link.hxx
index 99be32b754f8..16a5818597bb 100644
--- a/include/tools/link.hxx
+++ b/include/tools/link.hxx
@@ -23,7 +23,6 @@
#include <sal/config.h>
#include <sal/types.h>
-#include <tools/toolsdllapi.h>
#define DECL_LINK(Member, ArgType) \
static sal_IntPtr LinkStub##Member(void *, void *); \
@@ -131,8 +130,7 @@
#define EMPTYARG
-template<typename Arg = void *, typename Ret = sal_IntPtr>
-class TOOLS_DLLPUBLIC Link {
+template<typename Arg = void *, typename Ret = sal_IntPtr> class Link {
public:
typedef Ret Stub(void *, Arg);