From: NAKAMURA Takumi Date: Fri, 31 Oct 2014 00:30:37 +0000 (+0000) Subject: ASTDumper.cpp: Appease g++, for now. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce30a474b685d1a06526f86e2c95015077f4a7ec;p=clang ASTDumper.cpp: Appease g++, for now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220940 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTDumper.cpp b/lib/AST/ASTDumper.cpp index bb4ecc2cff..d121d0d527 100644 --- a/lib/AST/ASTDumper.cpp +++ b/lib/AST/ASTDumper.cpp @@ -152,8 +152,8 @@ namespace { OS << '\n'; ColorScope Color(*this, IndentColor); OS << Prefix << (isLastChild ? '`' : '|') << '-'; - Prefix.push_back(isLastChild ? ' ' : '|'); - Prefix.push_back(' '); + this->Prefix.push_back(isLastChild ? ' ' : '|'); + this->Prefix.push_back(' '); } FirstChild = true; @@ -166,11 +166,11 @@ namespace { // Dump those ones out now. while (Depth < Pending.size()) { Pending.back()(true); - Pending.pop_back(); + this->Pending.pop_back(); } // Restore the old prefix. - Prefix.resize(Prefix.size() - 2); + this->Prefix.resize(Prefix.size() - 2); }; if (FirstChild) {