From a8de0635685fd67ca740bb5f093bc9a23cae7263 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sun, 11 Feb 2018 21:51:49 +0000 Subject: [PATCH] Fix a typo in the synopsis comment. NFC. Thanks to K-ballo for the catch git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@324851 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/utility | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/utility b/include/utility index 535e3cb3a..f11d58019 100644 --- a/include/utility +++ b/include/utility @@ -52,7 +52,7 @@ template >::type move_if_noexcept(T& x) noexcept; // constexpr in C++14 -template constexpr add_const_t& as_const(T& t) noexcept; // C++17 +template constexpr add_const_t& as_const(T& t) noexcept; // C++17 template void as_const(const T&&) = delete; // C++17 template typename add_rvalue_reference::type declval() noexcept;