summaryrefslogtreecommitdiffstats
path: root/libcxx/src/ios.cpp
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-05-26 19:48:01 +0000
committerHoward Hinnant <hhinnant@apple.com>2011-05-26 19:48:01 +0000
commita62f28994c1b70083338e5f61c1e36db33d49b18 (patch)
tree1bd1ff3764c2fcf7b5f48cb18b7f381b5ea03c01 /libcxx/src/ios.cpp
parente3a07a3b4277532e583399b652c1db421792299c (diff)
Applied noexcept to everything in [diagnostics] (Chapter 19)
llvm-svn: 132137
Diffstat (limited to 'libcxx/src/ios.cpp')
-rw-r--r--libcxx/src/ios.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/ios.cpp b/libcxx/src/ios.cpp
index e7153cba2b76..bca15fb7965d 100644
--- a/libcxx/src/ios.cpp
+++ b/libcxx/src/ios.cpp
@@ -38,12 +38,12 @@ class _LIBCPP_HIDDEN __iostream_category
: public __do_message
{
public:
- virtual const char* name() const;
+ virtual const char* name() const _NOEXCEPT;
virtual string message(int ev) const;
};
const char*
-__iostream_category::name() const
+__iostream_category::name() const _NOEXCEPT
{
return "iostream";
}