[libcxx-commits] [libcxx] 0735a6e - [NFC][libc++] Adds spaces in the CMake output.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Wed Sep 6 11:55:53 PDT 2023


Author: Mark de Wever
Date: 2023-09-06T20:54:43+02:00
New Revision: 0735a6e3fa326f99369e106a7b6b6c9b2a4c09a2

URL: https://github.com/llvm/llvm-project/commit/0735a6e3fa326f99369e106a7b6b6c9b2a4c09a2
DIFF: https://github.com/llvm/llvm-project/commit/0735a6e3fa326f99369e106a7b6b6c9b2a4c09a2.diff

LOG: [NFC][libc++] Adds spaces in the CMake output.

The line continuations didn't have the proper spaces.

Added: 
    

Modified: 
    libcxx/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt
index e135939641848b..16f487f7c19c87 100644
--- a/libcxx/CMakeLists.txt
+++ b/libcxx/CMakeLists.txt
@@ -352,21 +352,21 @@ endif()
 if (LIBCXX_HAS_EXTERNAL_THREAD_API)
   if (LIBCXX_HAS_PTHREAD_API)
     message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API"
-                        "and LIBCXX_HAS_PTHREAD_API cannot be both"
-                        "set to ON at the same time.")
+                        " and LIBCXX_HAS_PTHREAD_API cannot be both"
+                        " set to ON at the same time.")
   endif()
   if (LIBCXX_HAS_WIN32_THREAD_API)
     message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API"
-                        "and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
-                        "set to ON at the same time.")
+                        " and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
+                        " set to ON at the same time.")
   endif()
 endif()
 
 if (LIBCXX_HAS_PTHREAD_API)
   if (LIBCXX_HAS_WIN32_THREAD_API)
     message(FATAL_ERROR "The options LIBCXX_HAS_PTHREAD_API"
-                        "and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
-                        "set to ON at the same time.")
+                        " and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
+                        " set to ON at the same time.")
   endif()
 endif()
 


        


More information about the libcxx-commits mailing list