File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 22
22
build :
23
23
strategy :
24
24
matrix :
25
- os : [windows-latest, ubuntu-22 .04]
25
+ os : [windows-latest, ubuntu-20 .04]
26
26
arch : [x64, x86]
27
27
include :
28
28
- os : windows-latest
31
31
- os : windows-latest
32
32
arch : x86
33
33
CMAKE_ARCH_FLAG : -A Win32
34
- - os : ubuntu-22 .04
34
+ - os : ubuntu-20 .04
35
35
arch : x86
36
36
CMAKE_ARCH_FLAG : -DCMAKE_C_FLAGS="-m32" -DCMAKE_CXX_FLAGS="-m32"
37
37
- os : macos-13
Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ project(gmsv_async_postgres
42
42
# Enable -fPIC flag
43
43
set (CMAKE_POSITION_INDEPENDENT_CODE ON )
44
44
45
- # Require C++ 20
46
- set (CMAKE_CXX_STANDARD 20 )
45
+ # Require C++ 17
46
+ set (CMAKE_CXX_STANDARD 17 )
47
47
set (CMAKE_CXX_STANDARD_REQUIRED ON )
48
- set (CMAKE_CXX_EXTENSIONS ON )
48
+ set (CMAKE_CXX_EXTENSIONS OFF )
49
49
50
50
# Enable multithreaded compilation on Windows
51
51
if (MSVC )
Original file line number Diff line number Diff line change 1
1
#include < Platform.hpp>
2
- #include < format>
3
2
4
3
#include " async_postgres.hpp"
5
4
You can’t perform that action at this time.
0 commit comments