Skip to content

Commit

Permalink
resolved comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SpectraL519 committed Mar 24, 2024
1 parent 14ca2ec commit e848e28
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions change_log.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<br />
<br />
Expand All @@ -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 `<algorithm>` to the `<ranges>` library for all current container operations
2 changes: 1 addition & 1 deletion example/source/merge_files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e848e28

Please sign in to comment.