diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-19 13:45:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-19 14:48:27 +0200 |
commit | d0f18382c59a54fcbbe8419b43e264a0c48fa6ec (patch) | |
tree | ad6d215d7e5d14e2ed7d9e61964d9374c28fba1a /include | |
parent | 7a57765241b8e9b57273f7548445ea57a1f44401 (diff) |
comphelper::isA(Any... -> Any::has
Change-Id: I4fdc77c6fde93d9d1ee814f7614a1c4c81e18247
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/types.hxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx index feeb522c284c..561144601091 100644 --- a/include/comphelper/types.hxx +++ b/include/comphelper/types.hxx @@ -69,18 +69,6 @@ namespace comphelper return _rType.equals(cppu::getTypeFavourUnsigned(pDummy)); } - - /** check if a type you have at hand at runtime is equal to another type you have at compile time - same comment as for the other isA .... - */ - template <class TYPE> - bool isA(const css::uno::Any& _rVal, TYPE* pDummy) - { - return _rVal.getValueType().equals( - cppu::getTypeFavourUnsigned(pDummy)); - } - - /** check if a type you have at hand at runtime is equal to another type you have at compile time */ template <class TYPE> |