Skip to content

Commit 8abc8b4

Browse files
committed
fixed typo in the error warning suppression statment
1 parent f2d0487 commit 8abc8b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ target_compile_options(${PROJECT_NAME} PRIVATE "-Wall")
3434

3535
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
3636
target_compile_options(${PROJECT_NAME} PRIVATE /wd4625 # Suppresses warning C4625
37-
/wd4526 # Suppresses warning C4626
37+
/wd4626 # Suppresses warning C4626
3838
)
3939
endif()
4040

@@ -76,7 +76,7 @@ else()
7676
/wd4514 # Suppresses warning C4514
7777
/wd4710 # Suppresses warning C4710
7878
/wd4625 # Suppresses warning C4625
79-
/wd4526 # Suppresses warning C4626
79+
/wd4626 # Suppresses warning C4626
8080
/wd5045 # Suppresses warning C5045 (spectre)
8181
/wd4365 # Supresses warning C4365
8282
)

0 commit comments

Comments
 (0)