diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-03 13:37:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-03 13:37:24 +0100 |
commit | 80e6eab7014b8b0215a442296d517c2bd4ad8c82 (patch) | |
tree | 69a3c3c68e71310941a9bfe85de5119f781257b2 /include/tools | |
parent | a883b6b13b67898accdc1ffe3fd9e770612352b1 (diff) |
Fix TYPEINFO_VISIBILITY vs. TYPEINFO_VISIBILITY_OVERRIDE
Change-Id: Ia6494c611e6596fa4811c2751bb96294a3950f17
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/rtti.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/rtti.hxx b/include/tools/rtti.hxx index 013552c66f79..1bc9c448c3d5 100644 --- a/include/tools/rtti.hxx +++ b/include/tools/rtti.hxx @@ -43,8 +43,8 @@ typedef void* (*TypeId)(); visibility static void* CreateType(); \ visibility static TypeId StaticType(); \ visibility static bool IsOf( TypeId aSameOrSuperType ); \ - visibility virtual TypeId Type() const SAL_OVERRIDE; \ - visibility virtual bool IsA( TypeId aSameOrSuperType ) const SAL_OVERRIDE + visibility virtual TypeId Type() const; \ + visibility virtual bool IsA( TypeId aSameOrSuperType ) const #define TYPEINFO_VISIBILITY_OVERRIDE(visibility) \ visibility static void* CreateType(); \ |