[libcxx] r293079 - Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 25 12:14:04 PST 2017


Author: marshall
Date: Wed Jan 25 14:14:03 2017
New Revision: 293079

URL: http://llvm.org/viewvc/llvm-project?rev=293079&view=rev
Log:
Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch

Modified:
    libcxx/trunk/include/future

Modified: libcxx/trunk/include/future
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/future?rev=293079&r1=293078&r2=293079&view=diff
==============================================================================
--- libcxx/trunk/include/future (original)
+++ libcxx/trunk/include/future Wed Jan 25 14:14:03 2017
@@ -156,7 +156,7 @@ public:
     ~future();
     future& operator=(const future& rhs) = delete;
     future& operator=(future&&) noexcept;
-    shared_future<R> share() noecept;
+    shared_future<R> share() noexcept;
 
     // retrieving the value
     R get();




More information about the cfe-commits mailing list