From 2b4d13f135cd0e0b7000f1de658c35c873f533b3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 23 Aug 2016 12:17:35 +0200 Subject: Reduce scope of variable Change-Id: Ib3669c8946b431b845bcb217e7cf4a5f7a89177f --- helpcompiler/source/HelpCompiler.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'helpcompiler') diff --git a/helpcompiler/source/HelpCompiler.cxx b/helpcompiler/source/HelpCompiler.cxx index 4f391b64017f..67dbfcdc8ddb 100644 --- a/helpcompiler/source/HelpCompiler.cxx +++ b/helpcompiler/source/HelpCompiler.cxx @@ -330,14 +330,12 @@ void myparser::traverse( xmlNodePtr parentNode ) xmlFree (branchxml); xmlFree (idxml); - std::string hid; - if (branch.compare(0, 3, "hid") == 0) { size_t index = branch.find('/'); if (index != std::string::npos) { - hid = branch.substr(1 + index); + auto hid = branch.substr(1 + index); // one shall serve as a documentId if (documentId.empty()) documentId = hid; -- cgit