From 6cb9e6dad798ec59f055aebe84a9c4a21e4be40d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 3 Mar 2017 20:57:02 +0100 Subject: Remove redundant 'inline' keyword ...from function definitions occurring within class definitions. Done with a rewriting Clang plugin (to be pushed later). Change-Id: I9c6f2818a57ccdb361548895a7743107cbacdff8 Reviewed-on: https://gerrit.libreoffice.org/34874 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- sal/rtl/bootstrap.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sal/rtl/bootstrap.cxx') diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index 2a99e0aecda1..6455c35b2aaa 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -119,9 +119,9 @@ struct rtl_bootstrap_NameValue OUString sName; OUString sValue; - inline rtl_bootstrap_NameValue() + rtl_bootstrap_NameValue() {} - inline rtl_bootstrap_NameValue( + rtl_bootstrap_NameValue( OUString const & name, OUString const & value ) : sName( name ), sValue( value ) -- cgit