File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ StaticLibrary {
88 cpp .cxxFlags : base .concat (" /await" ) // enable coroutine-ts
99 }
1010 Properties {
11- condition: qbs .toolchain .contains (' msvc' ) && qbs .toolchain .contains (' clang-cl' )
11+ condition: qbs .toolchain .contains (' msvc' ) && qbs .toolchain .contains (' clang-cl' ) && cpp . compilerVersionMajor < 11
1212 cpp .cxxFlags : base .concat (" -Xclang" , " -fcoroutines-ts" ) // enable coroutine-ts
1313 }
1414 Properties {
15- condition: qbs .toolchain .contains (' clang' )
15+ condition: qbs .toolchain .contains (' clang' ) && cpp . compilerVersionMajor < 11
1616 cpp .cxxFlags : base .concat (" -fcoroutines-ts" ) // enable coroutine-ts
1717 }
1818
@@ -33,7 +33,7 @@ StaticLibrary {
3333 cpp .cxxFlags : base .concat (" /await" ) // enable coroutine-ts
3434 }
3535 Properties {
36- condition: qbs .toolchain .contains (' msvc' ) && qbs .toolchain .contains (' clang-cl' )
36+ condition: qbs .toolchain .contains (' msvc' ) && qbs .toolchain .contains (' clang-cl' ) && cpp . compilerVersionMajor < 11
3737 cpp .cxxFlags : base .concat (" -Xclang" , " -fcoroutines-ts" ) // enable coroutine-ts
3838 }
3939 Properties {
Original file line number Diff line number Diff line change 33
44#include < ostream>
55#include < string19/StringView.ostream.h>
6+ #include < stdint.h> // int64_t, uint64_t
67
78namespace enum19 {
89
You can’t perform that action at this time.
0 commit comments