From: Eric Christopher Date: Wed, 8 Feb 2012 00:23:21 +0000 (+0000) Subject: Whitespace. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=531b1a91fbbf75dc2ab54f609e304376753e1679;p=clang Whitespace. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150026 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-dup-fwd-decl.cpp b/test/CodeGenCXX/debug-info-dup-fwd-decl.cpp index 766a613e70..d7cf27534d 100644 --- a/test/CodeGenCXX/debug-info-dup-fwd-decl.cpp +++ b/test/CodeGenCXX/debug-info-dup-fwd-decl.cpp @@ -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; };