File tree Expand file tree Collapse file tree 4 files changed +14
-11
lines changed
Expand file tree Collapse file tree 4 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -300,17 +300,17 @@ add_executable(std_visit src/std_visit.cpp)
300300add_executable (error_code src/error_code.cpp)
301301
302302
303- if (${CMAKE_GNU_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 13)
304- add_executable (printing_with_format src/printing_with_format.cpp)
305- endif ()
306-
307- if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 14)
308- add_executable (printing_with_format src/printing_with_format.cpp)
309- elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 13)
310- add_executable (printing_with_format src/printing_with_format.cpp)
311- elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 1900)
312- add_executable (printing_with_format src/printing_with_format.cpp)
313- endif ()
303+ # if(${CMAKE_GNU_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 13)
304+ # add_executable(printing_with_format src/printing_with_format.cpp)
305+ # endif()
306+
307+ # if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 14)
308+ # add_executable(printing_with_format src/printing_with_format.cpp)
309+ # elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 13)
310+ # add_executable(printing_with_format src/printing_with_format.cpp)
311+ # elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 1900)
312+ # add_executable(printing_with_format src/printing_with_format.cpp)
313+ # endif()
314314
315315
316316
Original file line number Diff line number Diff line change @@ -365,3 +365,4 @@ This change ensures that VSCode uses the "Ninja Multi-Config" generator by defau
365365 * [ Goolge C++ Style Guide] ( https://google.github.io/styleguide/cppguide.html )
366366 * [ isocpp] ( https://isocpp.org/wiki/faq/coding-standards )
367367 * [ Bjarne Stroustrup's C++ Style] ( https://www.stroustrup.com/bs_faq2.html )
368+
Original file line number Diff line number Diff line change 1212#include < numeric>
1313#include < queue>
1414#include < random>
15+ #include < utility>
1516
1617/*
1718std::unique
Original file line number Diff line number Diff line change 1414#include < string> // c++ style api
1515#include < string_view>
1616#include < vector>
17+ #include < cstdint>
1718
1819#if defined WIN32
1920// #include <stringapiset.h>
You can’t perform that action at this time.
0 commit comments