@@ -203,7 +203,10 @@ CI current build and test flows:
203
203
204
204
``` shell
205
205
# Configure build: default build production code + tests (BUILD_TESTING=ON by default).
206
- $ cmake -G " Ninja Multi-Config" -DCMAKE_CONFIGURATION_TYPES=" RelWithDebInfo;Asan" -DCMAKE_TOOLCHAIN_FILE=etc/clang-19-toolchain.cmake -B .build -S .
206
+ $ cmake -G " Ninja Multi-Config" \
207
+ -DCMAKE_CONFIGURATION_TYPES=" RelWithDebInfo;Asan" \
208
+ -DCMAKE_TOOLCHAIN_FILE=etc/clang-19-toolchain.cmake \
209
+ -B .build -S .
207
210
-- The CXX compiler identification is Clang 19.0.0
208
211
...
209
212
-- Build files have been written to: /path/to/Optional26/.build
@@ -229,7 +232,11 @@ By default, we build and run tests. You can provide `-DBUILD_TESTING=OFF` and co
229
232
230
233
``` shell
231
234
# Configure build: build production code, skip tests (BUILD_TESTING=OFF).
232
- $ cmake -G " Ninja Multi-Config" -DCMAKE_CONFIGURATION_TYPES=" RelWithDebInfo;Asan" -DCMAKE_TOOLCHAIN_FILE=etc/clang-19-toolchain.cmake -DBUILD_TESTING=OFF -B .build -S .
235
+ $ cmake -G " Ninja Multi-Config" \
236
+ -DCMAKE_CONFIGURATION_TYPES=" RelWithDebInfo;Asan" \
237
+ -DCMAKE_TOOLCHAIN_FILE=etc/clang-19-toolchain.cmake \
238
+ -DBUILD_TESTING=OFF \
239
+ -B .build -S .
233
240
-- The CXX compiler identification is Clang 19.0.0
234
241
...
235
242
-- Build files have been written to: /path/to/Optional26/.build
@@ -289,7 +296,8 @@ make lint
289
296
290
297
Latest revision(s) of the papers can be built / found at:
291
298
292
- * [ give-std-optional-range-support] ( https://github.com/neatudarius/give-std-optional-range-support/ ) for ` Give *std::optional* Range Support (P3168) `
299
+ * [ give-std-optional-range-support] ( https://github.com/neatudarius/give-std-optional-range-support/ ) for
300
+ ` Give *std::optional* Range Support (P3168) `
293
301
* issue: [ #1831 ] ( https://github.com/cplusplus/papers/issues/1831 )
294
302
* LEWG:
295
303
* Reviewed in Tokyo 2024.
0 commit comments