diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-12-01 20:21:04 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-12-01 20:21:04 +0000 |
commit | c206366fd7774aff222578c2680b931a4c2c35ba (patch) | |
tree | 754a1c9a558a9c1e4e1774aec8ac5268ba3d2afe /libcxx/src/new.cpp | |
parent | ab0ad4ed1eea577056d76a4b76734dae881955d3 (diff) | |
download | bcm5719-llvm-c206366fd7774aff222578c2680b931a4c2c35ba.tar.gz bcm5719-llvm-c206366fd7774aff222578c2680b931a4c2c35ba.zip |
Quash a whole bunch of warnings
llvm-svn: 145624
Diffstat (limited to 'libcxx/src/new.cpp')
-rw-r--r-- | libcxx/src/new.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/new.cpp b/libcxx/src/new.cpp index 1e8ed88dc4c..f2987b1f75b 100644 --- a/libcxx/src/new.cpp +++ b/libcxx/src/new.cpp @@ -83,7 +83,7 @@ operator new[](size_t size) __attribute__((__weak__, __visibility__("default"))) void* -operator new[](size_t size, const std::nothrow_t& nothrow) _NOEXCEPT +operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT { void* p = 0; #ifndef _LIBCPP_NO_EXCEPTIONS |