Use non-shadowing param name (Coverity 61660).

This commit is contained in:
Axel Naumann 2015-06-07 20:36:32 +02:00 committed by sftnight
parent 77b6a92f5c
commit 7b0cae3aef

View File

@ -50,7 +50,7 @@ namespace {
const std::string &pragmaInst) {
struct SkipToEOD_t {
Preprocessor& m_PP;
SkipToEOD_t(Preprocessor& PP): m_PP(PP) {}
SkipToEOD_t(Preprocessor& PParg): m_PP(PParg) {}
~SkipToEOD_t() { m_PP.DiscardUntilEndOfDirective(); }
} SkipToEOD(PP);