From e848e28c690398c28063b40c3797a25657720e95 Mon Sep 17 00:00:00 2001 From: SpectraL519 Date: Sun, 24 Mar 2024 17:57:30 +0100 Subject: [PATCH] resolved comments --- change_log.md | 9 +++++++-- example/source/merge_files.cpp | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/change_log.md b/change_log.md index c97795a..b09d6e4 100644 --- a/change_log.md +++ b/change_log.md @@ -7,11 +7,16 @@ * Formatting scripts: * Unix: `format/unix_like.sh` * Windows `format/win.ps1` -* Examples: +* Example programs: * convert_number * merge_files * power * verbosity +* Github workflows: + * g++ + * clang++ + * test +* MIT Licence

@@ -23,6 +28,6 @@ * Renamed folders `src` to `source` * Moved formatting scripts to `scripts/format/` * Aligned the `.clang-format` configuration file -* Added the `install_clang_format_17.sh` env script +* Added the `install_clang17_toolchain.sh` env script * Added the `format` workflow * Switched from the `` to the `` library for all current container operations diff --git a/example/source/merge_files.cpp b/example/source/merge_files.cpp index 71e07c0..eed1c2a 100644 --- a/example/source/merge_files.cpp +++ b/example/source/merge_files.cpp @@ -31,7 +31,7 @@ int main(int argc, char* argv[]) { const auto output_file_name = parser.value("output"); std::ofstream output_file(output_file_name); - if (! output_file.is_open()) + if (not output_file.is_open()) throw std::runtime_error("Cannot open file: " + output_file_name); for (const auto& input_file_name : input_file_name_list) {