diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-10 04:42:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-10 04:42:25 +0000 |
commit | c1da56ef012d02c77c13689f4ca1a2e4f002eb2a (patch) | |
tree | f6ce9c31e9d136e2188cace9d2824aeaac796473 | |
parent | 3a0fd13778cbe38ff20b467345a468eefb7072d2 (diff) |
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68760 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Attr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h index 9deed40d4c..b216203e03 100644 --- a/include/clang/AST/Attr.h +++ b/include/clang/AST/Attr.h @@ -246,7 +246,7 @@ public: // Implement isa/cast/dyncast/etc. static bool classof(const Attr *A) { - return A->getKind() == AnalyzerNoReturn; + return A->getKind() == AnalyzerNoReturn; } static bool classof(const AnalyzerNoReturnAttr *A) { return true; } }; |