]> granicus.if.org Git - clang/commitdiff
Formatting.
authorJohn McCall <rjmccall@apple.com>
Tue, 12 Apr 2011 00:59:32 +0000 (00:59 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 12 Apr 2011 00:59:32 +0000 (00:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129336 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/anonymous-union-member-initializer.cpp

index 85e931b50c9144d1e89f72efffe55a0a2f0c0897..2ddafecf6651e00c9b28ffb4d0f1281b4c03345f 100644 (file)
@@ -106,14 +106,11 @@ struct S {
 } s;
 
 
- //PR8760 
- template <typename T>\r
-  struct Foo {\r
-    Foo() : ptr(__nullptr) {}\r
-    union {\r
-      T *ptr;\r
-   };\r
-  };\r
-  Foo<int> f;\r
-  \r
-  \r
+//PR8760 
+template <typename T> struct Foo {
+  Foo() : ptr(__nullptr) {}
+  union {
+    T *ptr;
+  };
+};
+Foo<int> f;