diff options
author | Joe Loser <joeloser93@gmail.com> | 2022-06-22 11:25:43 -0600 |
---|---|---|
committer | Joe Loser <joeloser93@gmail.com> | 2022-06-22 12:25:31 -0600 |
commit | f7d434ef294b335ae90c83d5dda804ce4a3ea6f5 (patch) | |
tree | f29027677be0a1435ec4e9eabe0b6fd25f8d295a | |
parent | 476ced4b89594d329dd0aa8798a46153672ded3c (diff) | |
download | llvm-f7d434ef294b335ae90c83d5dda804ce4a3ea6f5.zip llvm-f7d434ef294b335ae90c83d5dda804ce4a3ea6f5.tar.gz llvm-f7d434ef294b335ae90c83d5dda804ce4a3ea6f5.tar.bz2 |
[libc++] Clarify std::function release note
Replace "This option it" with "This option" to make the sentence read a bit
clearer.
Differential Revision: https://reviews.llvm.org/D128362
-rw-r--r-- | libcxx/docs/ReleaseNotes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/docs/ReleaseNotes.rst b/libcxx/docs/ReleaseNotes.rst index 08397d9..c5d1907d 100644 --- a/libcxx/docs/ReleaseNotes.rst +++ b/libcxx/docs/ReleaseNotes.rst @@ -150,7 +150,7 @@ API Changes - ``std::function`` has been removed in C++03. If you are using it, please remove usages or upgrade to C++11 or later. It is possible to re-enable ``std::function`` in C++03 by defining - ``_LIBCPP_ENABLE_CXX03_FUNCTION``. This option it will be removed in LLVM 16. + ``_LIBCPP_ENABLE_CXX03_FUNCTION``. This option will be removed in LLVM 16. - ``unary_function`` and ``binary_function`` are no longer available in C++17 and C++20. They can be re-enabled by defining ``_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION``. |