From 67009cf202e2a9bca3ac095870f6d64a47f09157 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Sep 2014 12:27:35 +0200 Subject: l10ntools: std::auto_ptr -> std::unique_ptr Change-Id: I595506b8c6d127abaa8d86bd0ed263edba210bb5 --- l10ntools/source/helpmerge.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l10ntools') diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 20773de553ac..492f6f7c9a68 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -81,7 +81,7 @@ bool HelpParser::CreatePO( SimpleXMLParser aParser; //TODO: explicit BOM handling? - std::auto_ptr file ( aParser.Execute( sHelpFile, pXmlFile ) ); + std::unique_ptr file ( aParser.Execute( sHelpFile, pXmlFile ) ); if(file.get() == NULL) { -- cgit