]> granicus.if.org Git - clang/commitdiff
Whitespace.
authorEric Christopher <echristo@apple.com>
Wed, 8 Feb 2012 00:23:21 +0000 (00:23 +0000)
committerEric Christopher <echristo@apple.com>
Wed, 8 Feb 2012 00:23:21 +0000 (00:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150026 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/debug-info-dup-fwd-decl.cpp

index 766a613e700282e6e2452f20f0eaf4dd1e598d1a..d7cf27534d735155414c3f43745ab79670439403 100644 (file)
@@ -3,16 +3,16 @@ class Test
 {
 public:
     Test () : reserved (new data()) {}
-    
+
     unsigned
     getID() const
     {
         return reserved->objectID;
     }
 protected:
-    struct data {   
+    struct data {
         unsigned objectID;
-    };  
+    };
     data* reserved;
 };