Skip to content

Commit 7cf4521

Browse files
committed
🔥 Remove GCC extension warning
Use of the extension itself was removed in 61aae30
1 parent 6e04a58 commit 7cf4521

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ add_library(stdx INTERFACE)
2525
target_include_directories(stdx INTERFACE include)
2626
target_compile_features(stdx INTERFACE cxx_std_${CMAKE_CXX_STANDARD})
2727
target_compile_options(
28-
stdx
29-
INTERFACE
30-
$<$<CXX_COMPILER_ID:Clang>:-Wno-gnu-string-literal-operator-template>
31-
$<$<CXX_COMPILER_ID:Clang>:-Wno-missing-braces>)
28+
stdx INTERFACE $<$<CXX_COMPILER_ID:Clang>:-Wno-missing-braces>)
3229
target_link_libraries_system(stdx INTERFACE boost_mp11 fmt::fmt-header-only)
3330

3431
if(PROJECT_IS_TOP_LEVEL)

0 commit comments

Comments
 (0)