From 5206992e6e9b22b48cea0a4a7626ee576c66492e Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 19 Feb 2019 16:00:52 +0100 Subject: Some uses of C++17 class template argument deduction Change-Id: I47c469c0fcdff41d83729be9489c946e81ef3686 Reviewed-on: https://gerrit.libreoffice.org/68020 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- codemaker/source/cppumaker/cppumaker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'codemaker/source/cppumaker/cppumaker.cxx') diff --git a/codemaker/source/cppumaker/cppumaker.cxx b/codemaker/source/cppumaker/cppumaker.cxx index 927183918b1a..b1769eda87a6 100644 --- a/codemaker/source/cppumaker/cppumaker.cxx +++ b/codemaker/source/cppumaker/cppumaker.cxx @@ -43,7 +43,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { return EXIT_FAILURE; } - rtl::Reference< TypeManager > typeMgr(new TypeManager); + rtl::Reference typeMgr(new TypeManager); for (const OString& f :options.getExtraInputFiles()) { typeMgr->loadProvider(convertToFileUrl(f), false); -- cgit