diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-08-05 03:16:33 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-08-05 03:16:33 +0000 |
commit | a12b9deea06cafefa9073e301700a3a717739bd7 (patch) | |
tree | 608cf630ac7b50027319b9d7f110dafea93270de /clang/test/Parser/cxx-attributes.cpp | |
parent | e6ca1cfef790385ce141ef4de1f30f954fb40347 (diff) | |
download | bcm5719-llvm-a12b9deea06cafefa9073e301700a3a717739bd7.tar.gz bcm5719-llvm-a12b9deea06cafefa9073e301700a3a717739bd7.zip |
Convert this file to not have Windows line endings -- likely committed from
Windows without svn:eol-style=native.
llvm-svn: 110308
Diffstat (limited to 'clang/test/Parser/cxx-attributes.cpp')
-rw-r--r-- | clang/test/Parser/cxx-attributes.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/clang/test/Parser/cxx-attributes.cpp b/clang/test/Parser/cxx-attributes.cpp index 192193a6dfd..8603b309001 100644 --- a/clang/test/Parser/cxx-attributes.cpp +++ b/clang/test/Parser/cxx-attributes.cpp @@ -1,9 +1,9 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s
-
-class c {
- virtual void f1(const char* a, ...)
- __attribute__ (( __format__(__printf__,2,3) )) = 0;
- virtual void f2(const char* a, ...)
- __attribute__ (( __format__(__printf__,2,3) )) {}
-};
-
+// RUN: %clang_cc1 -fsyntax-only -verify %s + +class c { + virtual void f1(const char* a, ...) + __attribute__ (( __format__(__printf__,2,3) )) = 0; + virtual void f2(const char* a, ...) + __attribute__ (( __format__(__printf__,2,3) )) {} +}; + |