diff options
author | Mike Stump <mrs@apple.com> | 2010-01-20 02:03:14 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2010-01-20 02:03:14 +0000 |
commit | b7166334d897e1e4e6a5b428fe2d0ec752ef187f (patch) | |
tree | 47fafa60c5dafcf092da2c2a7067afc7187a0bfe /lib/Frontend/PCHWriter.cpp | |
parent | 3ac1edaab9063f1235a2939ca82ba4db24bbf695 (diff) |
Use the llvm coding convention for indentation for switch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index 97cd84f447..29647f3b95 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -1271,7 +1271,7 @@ void PCHWriter::WriteType(QualType T) { // For all of the concrete, non-dependent types, call the // appropriate visitor function. #define TYPE(Class, Base) \ - case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break; + case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break; #define ABSTRACT_TYPE(Class, Base) #define DEPENDENT_TYPE(Class, Base) #include "clang/AST/TypeNodes.def" |