diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2018-02-11 21:51:49 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2018-02-11 21:51:49 +0000 |
| commit | 026b75f209d04596f1685b53ccb7beb47383b25c (patch) | |
| tree | 17c614b2c7be593c1cb5c709bb4358dbe6606cbb | |
| parent | 19e17b3970a65b66c719567ade70a541166b1bca (diff) | |
| download | bcm5719-llvm-026b75f209d04596f1685b53ccb7beb47383b25c.tar.gz bcm5719-llvm-026b75f209d04596f1685b53ccb7beb47383b25c.zip | |
Fix a typo in the synopsis comment. NFC. Thanks to K-ballo for the catch
llvm-svn: 324851
| -rw-r--r-- | libcxx/include/utility | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/utility b/libcxx/include/utility index 535e3cb3a3a..f11d5801922 100644 --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -52,7 +52,7 @@ template <class T> >::type move_if_noexcept(T& x) noexcept; // constexpr in C++14 -template <class T> constexpr add_const<T>_t& as_const(T& t) noexcept; // C++17 +template <class T> constexpr add_const_t<T>& as_const(T& t) noexcept; // C++17 template <class T> void as_const(const T&&) = delete; // C++17 template <class T> typename add_rvalue_reference<T>::type declval() noexcept; |

