diff options
author | David Ostrovsky <david@ostrovsky.org> | 2015-07-31 07:41:07 +0200 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2015-08-01 07:51:11 +0000 |
commit | 7c7124a51e467b6ab4df4d0a38000aa657c35029 (patch) | |
tree | 79b3f16811ed71b65370b01d2e6000d75a40911c | |
parent | 935fb7cc075ebc60712ef4f2f3a84c4470bbaddf (diff) |
Any.h: Fix declaration hides class member warning
This fixes warning C4458 issued by MSVC 14.0 (aka VS2015) compiler.
Change-Id: I48ed50bb54232d70460495d6d6a9e100fb90b869
Reviewed-on: https://gerrit.libreoffice.org/17444
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Tested-by: David Ostrovsky <david@ostrovsky.org>
-rw-r--r-- | include/com/sun/star/uno/Any.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/com/sun/star/uno/Any.h b/include/com/sun/star/uno/Any.h index b700a54c4ceb..3122af3e80bb 100644 --- a/include/com/sun/star/uno/Any.h +++ b/include/com/sun/star/uno/Any.h @@ -97,9 +97,9 @@ public: /** Constructor: Sets a copy of the given data. @param pData_ value - @param pType type of value + @param pType_ type of value */ - inline Any( const void * pData_, typelib_TypeDescriptionReference * pType ); + inline Any( const void * pData_, typelib_TypeDescriptionReference * pType_ ); /** Destructor: Destructs any content and frees memory. */ @@ -186,9 +186,9 @@ public: and its memory freed. @param pData_ pointer to value - @param pType type of value + @param pType_ type of value */ - inline void SAL_CALL setValue( const void * pData_, typelib_TypeDescriptionReference * pType ); + inline void SAL_CALL setValue( const void * pData_, typelib_TypeDescriptionReference * pType_ ); /** Sets a value. If the any already contains a value, that value will be destructed and its memory freed. |