Skip to content

Commit 0735a6e

Browse files
committed
[NFC][libc++] Adds spaces in the CMake output.
The line continuations didn't have the proper spaces.
1 parent f78f93b commit 0735a6e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libcxx/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -352,21 +352,21 @@ endif()
352352
if (LIBCXX_HAS_EXTERNAL_THREAD_API)
353353
if (LIBCXX_HAS_PTHREAD_API)
354354
message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API"
355-
"and LIBCXX_HAS_PTHREAD_API cannot be both"
356-
"set to ON at the same time.")
355+
" and LIBCXX_HAS_PTHREAD_API cannot be both"
356+
" set to ON at the same time.")
357357
endif()
358358
if (LIBCXX_HAS_WIN32_THREAD_API)
359359
message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API"
360-
"and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
361-
"set to ON at the same time.")
360+
" and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
361+
" set to ON at the same time.")
362362
endif()
363363
endif()
364364

365365
if (LIBCXX_HAS_PTHREAD_API)
366366
if (LIBCXX_HAS_WIN32_THREAD_API)
367367
message(FATAL_ERROR "The options LIBCXX_HAS_PTHREAD_API"
368-
"and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
369-
"set to ON at the same time.")
368+
" and LIBCXX_HAS_WIN32_THREAD_API cannot be both"
369+
" set to ON at the same time.")
370370
endif()
371371
endif()
372372

0 commit comments

Comments
 (0)