Kaydet (Commit) 7c7124a5 authored tarafından David Ostrovsky's avatar David Ostrovsky

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/17444Reviewed-by: 's avatarDavid Ostrovsky <david@ostrovsky.org>
Tested-by: 's avatarDavid Ostrovsky <david@ostrovsky.org>
üst 935fb7cc
...@@ -97,9 +97,9 @@ public: ...@@ -97,9 +97,9 @@ public:
/** Constructor: Sets a copy of the given data. /** Constructor: Sets a copy of the given data.
@param pData_ value @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. /** Destructor: Destructs any content and frees memory.
*/ */
...@@ -186,9 +186,9 @@ public: ...@@ -186,9 +186,9 @@ public:
and its memory freed. and its memory freed.
@param pData_ pointer to value @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 /** Sets a value. If the any already contains a value, that value will be destructed
and its memory freed. and its memory freed.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment