diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-07-08 00:04:40 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-07-08 00:04:40 +0000 |
commit | 3aa229f7dca58676e2a4f143387fb0b53e2b783d (patch) | |
tree | f4b356ef983ecde2d5a5e600d02b7c079101f1d5 /libcxx/src | |
parent | 4e0c94be76bb5d539ec22692bc432da12c7f7299 (diff) | |
download | bcm5719-llvm-3aa229f7dca58676e2a4f143387fb0b53e2b783d.tar.gz bcm5719-llvm-3aa229f7dca58676e2a4f143387fb0b53e2b783d.zip |
provide ~future_error() definition
llvm-svn: 134663
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/future.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/src/future.cpp b/libcxx/src/future.cpp index 98c78055ca9..4c3a3fa8b98 100644 --- a/libcxx/src/future.cpp +++ b/libcxx/src/future.cpp @@ -59,6 +59,10 @@ future_error::future_error(error_code __ec) { } +future_error::~future_error() _NOEXCEPT +{ +} + void __assoc_sub_state::__on_zero_shared() _NOEXCEPT { |