diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-29 15:11:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-29 15:13:45 +0200 |
commit | c266ba458f444e5f4a4bafbf4073710c31897536 (patch) | |
tree | c5aad01deb8e06520283fc25718be313554b30a9 | |
parent | 66f0c17d244cdc8d5a96ca3fe97aef68b45ad0cc (diff) |
Remove redundant C-style cast
Change-Id: I1785b47bf24f6be55f7ee346c9972ffa12cd138b
-rw-r--r-- | include/tools/link.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/link.hxx b/include/tools/link.hxx index 566927c80efa..b71b585ea8ca 100644 --- a/include/tools/link.hxx +++ b/include/tools/link.hxx @@ -70,7 +70,7 @@ typedef sal_IntPtr (*PSTUB)( void*, void* ); sal_IntPtr Class::Method( SAL_UNUSED_PARAMETER Class*, SAL_UNUSED_PARAMETER void* ) #define LINK( Inst, Class, Member ) \ - Link( static_cast<Class*>(Inst), (PSTUB)&Class::LinkStub##Member ) + Link( static_cast<Class*>(Inst), &Class::LinkStub##Member ) #define STATIC_LINK( Inst, Class, Member ) LINK(Inst, Class, Member) |