diff options
Diffstat (limited to 'clang/lib/AST')
-rw-r--r-- | clang/lib/AST/ItaniumMangle.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/AST/ItaniumMangle.cpp b/clang/lib/AST/ItaniumMangle.cpp index 21548a0b161..5615647b0c6 100644 --- a/clang/lib/AST/ItaniumMangle.cpp +++ b/clang/lib/AST/ItaniumMangle.cpp @@ -2364,13 +2364,13 @@ void CXXNameMangler::mangleType(const DependentNameType *T) { // Proposal by cxx-abi-dev, 2014-03-26 // <class-enum-type> ::= <name> # non-dependent or dependent type name or // # dependent elaborated type specifier using - // # ‘typename' + // # 'typename' // ::= Ts <name> # dependent elaborated type specifier using - // # ‘struct’ or ‘class' + // # 'struct' or 'class' // ::= Tu <name> # dependent elaborated type specifier using - // # ‘union' + // # 'union' // ::= Te <name> # dependent elaborated type specifier using - // # ‘enum’ + // # 'enum' switch (T->getKeyword()) { case ETK_Typename: break; |