loplugin:staticanonymous

Change-Id: I1a96ef6bff7a99ab46f7c88722426cba48b46c81
This commit is contained in:
Stephan Bergmann 2016-04-01 08:43:14 +02:00
parent 403793990c
commit 0de40868b4

View File

@ -52,7 +52,7 @@ namespace
{ {
inline static bool td_equals( typelib_InterfaceTypeDescription * pTD1, inline bool td_equals( typelib_InterfaceTypeDescription * pTD1,
typelib_InterfaceTypeDescription * pTD2 ) typelib_InterfaceTypeDescription * pTD2 )
{ {
return (pTD1 == pTD2 || return (pTD1 == pTD2 ||
@ -830,7 +830,7 @@ namespace
class theStaticOIdPart : public rtl::Static<makeOIdPart, theStaticOIdPart> {}; class theStaticOIdPart : public rtl::Static<makeOIdPart, theStaticOIdPart> {};
inline static const OUString & unoenv_getStaticOIdPart() inline const OUString & unoenv_getStaticOIdPart()
{ {
return theStaticOIdPart::get().getOIdPart(); return theStaticOIdPart::get().getOIdPart();
} }