diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-07-21 01:03:40 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-07-21 01:03:40 +0000 |
commit | 5d926bf1b8dd15aca2c10733d15ec94dc3086efe (patch) | |
tree | 8270f2d56dd4772530fe385b1bc59d8f1bcba331 /libcxx/src/ios.cpp | |
parent | bf882037be02291a9056578b2b8bd6fe9a9aeb74 (diff) | |
download | bcm5719-llvm-5d926bf1b8dd15aca2c10733d15ec94dc3086efe.tar.gz bcm5719-llvm-5d926bf1b8dd15aca2c10733d15ec94dc3086efe.zip |
noexcept and constexpr applied to <ios>.
llvm-svn: 160593
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 80917a046d2..732a61bb239 100644 --- a/libcxx/src/ios.cpp +++ b/libcxx/src/ios.cpp @@ -401,7 +401,7 @@ ios_base::move(ios_base& rhs) } void -ios_base::swap(ios_base& rhs) +ios_base::swap(ios_base& rhs) _NOEXCEPT { _VSTD::swap(__fmtflags_, rhs.__fmtflags_); _VSTD::swap(__precision_, rhs.__precision_); |