diff options
| -rw-r--r-- | clang/include/clang/Lex/Token.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Lex/Token.h b/clang/include/clang/Lex/Token.h index a0754005e87..93e498fb6e0 100644 --- a/clang/include/clang/Lex/Token.h +++ b/clang/include/clang/Lex/Token.h @@ -61,7 +61,7 @@ public:    void setLocation(SourceLocation L) { Loc = L; }    void setLength(unsigned Len) { Length = Len; } -  const char *getName() const { return getTokenName(Kind); } +  const char *getName() const { return tok::getTokenName(Kind); }    /// startToken - Reset all flags to cleared.    ///  | 

