| commit | 31c9402eefc10e6edea697e5be914f54528ad4be | [log] [tgz] |
|---|---|---|
| author | Cédric Venet <cedric.venet@laposte.net> | Sat Feb 14 20:20:19 2009 +0000 |
| committer | Cédric Venet <cedric.venet@laposte.net> | Sat Feb 14 20:20:19 2009 +0000 |
| tree | d46663850c78e313eb0968ad3d327e8b18090280 | |
| parent | 27ecc6736fbd9a91a710a40719d68934370a700f [diff] [blame] |
Add svn:eol-style=native to some files Correct two files with inconsistent lines endings. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64564 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaCXX/do-while-scope.cpp b/test/SemaCXX/do-while-scope.cpp index 94a3116..8adaade 100644 --- a/test/SemaCXX/do-while-scope.cpp +++ b/test/SemaCXX/do-while-scope.cpp
@@ -1,8 +1,8 @@ // RUN: clang -fsyntax-only -verify %s void test() { - int x; - do - int x; - while (1); + int x; + do + int x; + while (1); }