Reduce scope of variable
Change-Id: Ib3669c8946b431b845bcb217e7cf4a5f7a89177f
This commit is contained in:
@@ -330,14 +330,12 @@ void myparser::traverse( xmlNodePtr parentNode )
|
|||||||
xmlFree (branchxml);
|
xmlFree (branchxml);
|
||||||
xmlFree (idxml);
|
xmlFree (idxml);
|
||||||
|
|
||||||
std::string hid;
|
|
||||||
|
|
||||||
if (branch.compare(0, 3, "hid") == 0)
|
if (branch.compare(0, 3, "hid") == 0)
|
||||||
{
|
{
|
||||||
size_t index = branch.find('/');
|
size_t index = branch.find('/');
|
||||||
if (index != std::string::npos)
|
if (index != std::string::npos)
|
||||||
{
|
{
|
||||||
hid = branch.substr(1 + index);
|
auto hid = branch.substr(1 + index);
|
||||||
// one shall serve as a documentId
|
// one shall serve as a documentId
|
||||||
if (documentId.empty())
|
if (documentId.empty())
|
||||||
documentId = hid;
|
documentId = hid;
|
||||||
|
Reference in New Issue
Block a user