mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-15 19:33:07 +01:00
fixed double-used local variable name
This commit is contained in:
parent
c5263c1499
commit
d9a6954950
@ -411,9 +411,9 @@ XMLStreamParser::EventType XMLStreamParser::nextImpl(bool peek)
|
||||
}
|
||||
case EV_START_ELEMENT:
|
||||
{
|
||||
if (const ElementEntry* e = getElement())
|
||||
if (const ElementEntry* pEntry = getElement())
|
||||
{
|
||||
switch (e->content)
|
||||
switch (pEntry->content)
|
||||
{
|
||||
case Content::Empty:
|
||||
throw XMLStreamParserException(*this, "element in empty content");
|
||||
|
Loading…
Reference in New Issue
Block a user