[libcxx-commits] [libcxx] 9ff51bf - [libc++] NFC: fix typos
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri May 1 10:10:41 PDT 2020
Author: Louis Dionne
Date: 2020-05-01T13:10:30-04:00
New Revision: 9ff51bf92e6e23c4b0926ed9b34c4251c103050f
URL: https://github.com/llvm/llvm-project/commit/9ff51bf92e6e23c4b0926ed9b34c4251c103050f
DIFF: https://github.com/llvm/llvm-project/commit/9ff51bf92e6e23c4b0926ed9b34c4251c103050f.diff
LOG: [libc++] NFC: fix typos
Added:
Modified:
libcxx/cmake/Modules/HandleLibCXXABI.cmake
libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/cmake/Modules/HandleLibCXXABI.cmake b/libcxx/cmake/Modules/HandleLibCXXABI.cmake
index a62efc0afa95..973d87584e4d 100644
--- a/libcxx/cmake/Modules/HandleLibCXXABI.cmake
+++ b/libcxx/cmake/Modules/HandleLibCXXABI.cmake
@@ -122,11 +122,11 @@ elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "libcxxrt")
"cxxrt" "cxxrt" "cxxabi.h;unwind.h;unwind-arm.h;unwind-itanium.h" ""
)
elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "vcruntime")
- # Nothing TODO
+ # Nothing to do
elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "none")
list(APPEND LIBCXX_COMPILE_FLAGS "-D_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY")
elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "default")
- # Nothing TODO
+ # Nothing to do
else()
message(FATAL_ERROR
"Unsupported c++ abi: '${LIBCXX_CXX_ABI_LIBNAME}'. \
diff --git a/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
index 82bd71b1d576..3eda844b7b6d 100644
--- a/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
+++ b/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
@@ -50,7 +50,7 @@ int main(int, char**)
{
using TestSizeT = test_allocator<char>::size_type;
{ // Testing (1)
- // Nothing TODO. Cannot deduce without any arguments.
+ // Nothing to do. Cannot deduce without any arguments.
}
{ // Testing (2)
// This overload isn't compatible with implicit deduction guides as
diff --git a/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp b/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp
index 9cea8c6c6942..db6d0d00648a 100644
--- a/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp
+++ b/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp
@@ -29,7 +29,7 @@
int main(int, char**)
{
{ // Testing (1)
- // Nothing TODO. Cannot deduce without any arguments.
+ // Nothing to do. Cannot deduce without any arguments.
}
{ // Testing (2)
const std::string_view sin("abc");
More information about the libcxx-commits
mailing list