summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--idlc/source/parser.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index e06b967f4225..c239fbaad31c 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -2153,9 +2153,9 @@ at_least_one_scoped_name :
$$ = $2;
} else
{
- StringList* pNames = new StringList();
- pNames->push_back(*$1);
- $$ = pNames;
+ StringList* pScopedNames = new StringList();
+ pScopedNames->push_back(*$1);
+ $$ = pScopedNames;
}
delete($1);
}