We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72668d commit 1167833Copy full SHA for 1167833
.github/workflows/ci.yml
@@ -90,7 +90,7 @@ jobs:
90
- name: install compilers
91
run: |
92
apt update -y
93
- apt install -y --no-install-recommends ca-certificates gpg curl ninja-build ${{ env.CC }} ${{ env.CXX }} ${{ env.FC }}
+ apt install -y --no-install-recommends ca-certificates gpg curl make ninja-build ${{ env.CC }} ${{ env.CXX }} ${{ env.FC }}
94
95
- name: install CMake
96
test/iterator/CMakeLists.txt
@@ -1,3 +1,10 @@
1
+include(CheckCXXSymbolExists)
2
+
3
+check_cxx_symbol_exists(__cpp_lib_to_address "memory" cpp20_to_address)
4
+if(NOT cpp20_to_address)
5
+ return()
6
+endif()
7
8
add_library(int_iterator OBJECT lib.cpp)
9
target_include_directories(int_iterator PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
10
0 commit comments