fix some funky indentation
authorChris Lattner <sabre@nondot.org>
Wed, 26 Aug 2009 04:21:30 +0000 (04:21 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 26 Aug 2009 04:21:30 +0000 (04:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/DebugInfo.h

index aabddb01a5b278af8602622a13b98fb10d506b5a..9f90f6435ee81da73d6ae13c550d8a286ad7c246 100644 (file)
@@ -218,17 +218,17 @@ namespace llvm {
     // carry this is just plain insane.
     uint64_t getOffsetInBits() const    { return getUInt64Field(7); }
     unsigned getFlags() const           { return getUnsignedField(8); }
-    bool isPrivate() const              { return 
-        (getFlags() & FlagPrivate) != 0; 
+    bool isPrivate() const {
+      return (getFlags() & FlagPrivate) != 0; 
     }
-    bool isProtected() const            { 
+    bool isProtected() const {
       return (getFlags() & FlagProtected) != 0; 
     }
-    bool isForwardDecl() const          {
-        return (getFlags() & FlagFwdDecl) != 0; 
+    bool isForwardDecl() const {
+      return (getFlags() & FlagFwdDecl) != 0; 
     }
-    bool isClosure() const          {
-        return (getFlags() & FlagClosure) != 0; 
+    bool isClosure() const {
+      return (getFlags() & FlagClosure) != 0; 
     }
 
     /// dump - print type.