diff options
author | Eli Bendersky <eliben@google.com> | 2014-06-06 20:31:48 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2014-06-06 20:31:48 +0000 |
commit | 06a4042c8d64d21a3cc0642067ced3e0ad62129f (patch) | |
tree | 79581b846c9c314d4534e920c00bfd9c6de8cda7 /clang/test/CodeGenCXX/class-layout.cpp | |
parent | c94391d3bfb18ed6ec0989fad1cdf66afd1292f7 (diff) | |
download | bcm5719-llvm-06a4042c8d64d21a3cc0642067ced3e0ad62129f.tar.gz bcm5719-llvm-06a4042c8d64d21a3cc0642067ced3e0ad62129f.zip |
Fix DOS-style newlines.
A previous patch r210330 (and possibly another) introduced DOS-style newlines
into a UNIX newline formatted file.
Patch by Mark Heffernan (http://reviews.llvm.org/D4046)
llvm-svn: 210369
Diffstat (limited to 'clang/test/CodeGenCXX/class-layout.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/class-layout.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/CodeGenCXX/class-layout.cpp b/clang/test/CodeGenCXX/class-layout.cpp index c6aaf0f0460..d7d84a86aba 100644 --- a/clang/test/CodeGenCXX/class-layout.cpp +++ b/clang/test/CodeGenCXX/class-layout.cpp @@ -94,9 +94,9 @@ namespace Test7 { // Shouldn't crash. namespace Test8 { - struct A {};
- struct D { int a; };
- struct B : virtual D, A { };
- struct C : B, A { void f() {} };
- C c;
+ struct A {}; + struct D { int a; }; + struct B : virtual D, A { }; + struct C : B, A { void f() {} }; + C c; } |