Skip to content

Commit 83f146b

Browse files
committed
quick fix
1 parent 980e82c commit 83f146b

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

CMakeLists.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -300,17 +300,17 @@ add_executable(std_visit src/std_visit.cpp)
300300
add_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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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+

src/algorithms_library.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <numeric>
1313
#include <queue>
1414
#include <random>
15+
#include <utility>
1516

1617
/*
1718
std::unique

src/string.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
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>

0 commit comments

Comments
 (0)