diff options
author | Dave Zarzycki <zarzycki@apple.com> | 2012-02-22 05:25:00 +0000 |
---|---|---|
committer | Dave Zarzycki <zarzycki@apple.com> | 2012-02-22 05:25:00 +0000 |
commit | 3cd25390e5737111d3143572c5ba377f9dc91258 (patch) | |
tree | 48e7b52781d3691f56644c29a02fe0ebb9cab128 /libcxxabi | |
parent | ed90df38004678cf1ebf1caa3fbac8a0047be73e (diff) | |
download | bcm5719-llvm-3cd25390e5737111d3143572c5ba377f9dc91258.tar.gz bcm5719-llvm-3cd25390e5737111d3143572c5ba377f9dc91258.zip |
Pedantic fix: missing newline at EOF
llvm-svn: 151132
Diffstat (limited to 'libcxxabi')
-rwxr-xr-x | libcxxabi/lib/buildit | 2 | ||||
-rw-r--r-- | libcxxabi/src/cxa_exception.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxxabi/lib/buildit b/libcxxabi/lib/buildit index 51b9a81e9c4..d1d2acdaf9b 100755 --- a/libcxxabi/lib/buildit +++ b/libcxxabi/lib/buildit @@ -27,7 +27,7 @@ then RC_ProjectSourceVersion=1 fi -EXTRA_FLAGS="-std=c++0x -stdlib=libc++ -fstrict-aliasing -Wstrict-aliasing=2" +EXTRA_FLAGS="-std=c++0x -stdlib=libc++ -fstrict-aliasing -Wstrict-aliasing=2 -Wnewline-eof" case $TRIPLE in *-apple-*) diff --git a/libcxxabi/src/cxa_exception.hpp b/libcxxabi/src/cxa_exception.hpp index d70de0eb6a5..cf019d4cd6b 100644 --- a/libcxxabi/src/cxa_exception.hpp +++ b/libcxxabi/src/cxa_exception.hpp @@ -115,4 +115,4 @@ static const uint64_t get_vendor_and_language = 0xFFFFFFFFFFFFFF00; // mask extern "C" void __cxa_free_dependent_exception (void * dependent_exception); #pragma GCC visibility pop -}
\ No newline at end of file +} |