From d0f18382c59a54fcbbe8419b43e264a0c48fa6ec Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Aug 2015 13:45:01 +0200 Subject: comphelper::isA(Any... -> Any::has Change-Id: I4fdc77c6fde93d9d1ee814f7614a1c4c81e18247 --- include/comphelper/types.hxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'include/comphelper/types.hxx') 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 - 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 -- cgit