diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-23 12:17:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-23 12:17:35 +0200 |
commit | 2b4d13f135cd0e0b7000f1de658c35c873f533b3 (patch) | |
tree | 61e8df6196784c738be9fbf767cf60ac9a373c21 /helpcompiler | |
parent | 82e956675743633bad292d74cc50b29c55a57303 (diff) |
Reduce scope of variable
Change-Id: Ib3669c8946b431b845bcb217e7cf4a5f7a89177f
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/source/HelpCompiler.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
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; |