diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2013-10-12 22:49:56 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2013-10-12 22:49:56 +0000 |
commit | c3776b1ce07005952aeac4b96ce7f7447d0955d3 (patch) | |
tree | e133b6524944581576c4f0a34ae26669db60c2b9 /libcxx/src/ios.cpp | |
parent | d58daf94337f5e06d867c64869f2763e73f01df2 (diff) | |
download | bcm5719-llvm-c3776b1ce07005952aeac4b96ce7f7447d0955d3.tar.gz bcm5719-llvm-c3776b1ce07005952aeac4b96ce7f7447d0955d3.zip |
LWG Issue 2087: iostream_category() and noexcept
llvm-svn: 192545
Diffstat (limited to 'libcxx/src/ios.cpp')
-rw-r--r-- | libcxx/src/ios.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/ios.cpp b/libcxx/src/ios.cpp index e79b3284cc2..bbe3c072e67 100644 --- a/libcxx/src/ios.cpp +++ b/libcxx/src/ios.cpp @@ -63,7 +63,7 @@ __iostream_category::message(int ev) const } const error_category& -iostream_category() +iostream_category() _NOEXCEPT { static __iostream_category s; return s; |