From 19cd3fd00f0a21023a32da67f134b076ad0c48fe Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 25 Jan 2017 20:14:03 +0000 Subject: [PATCH] Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@293079 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/future | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/future b/include/future index 99c70fbef..91f277217 100644 --- a/include/future +++ b/include/future @@ -156,7 +156,7 @@ public: ~future(); future& operator=(const future& rhs) = delete; future& operator=(future&&) noexcept; - shared_future share() noecept; + shared_future share() noexcept; // retrieving the value R get();