diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2017-01-25 20:14:03 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2017-01-25 20:14:03 +0000 |
| commit | 071aded6ee196fa7c052da4bd23df86ef1391d94 (patch) | |
| tree | 9681c7c023659986b2652b2fc6f16a767d56a743 /libcxx | |
| parent | 30dc91a7073b5cdda7fd3d6fbece28a400fdda81 (diff) | |
| download | bcm5719-llvm-071aded6ee196fa7c052da4bd23df86ef1391d94.tar.gz bcm5719-llvm-071aded6ee196fa7c052da4bd23df86ef1391d94.zip | |
Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch
llvm-svn: 293079
Diffstat (limited to 'libcxx')
| -rw-r--r-- | libcxx/include/future | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/future b/libcxx/include/future index 99c70fbefad..91f2772176a 100644 --- a/libcxx/include/future +++ b/libcxx/include/future @@ -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(); |

