@@ -203,7 +203,10 @@ CI current build and test flows:
203203
204204``` shell
205205# 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 .
207210-- The CXX compiler identification is Clang 19.0.0
208211...
209212-- 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
229232
230233``` shell
231234# 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 .
233240-- The CXX compiler identification is Clang 19.0.0
234241...
235242-- Build files have been written to: /path/to/Optional26/.build
@@ -289,7 +296,8 @@ make lint
289296
290297Latest revision(s) of the papers can be built / found at:
291298
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) `
293301 * issue: [ #1831 ] ( https://github.com/cplusplus/papers/issues/1831 )
294302 * LEWG:
295303 * Reviewed in Tokyo 2024.
0 commit comments