-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
167 changed files
with
1,130 additions
and
557 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,13 @@ SRCS = $(shell find include -type f -name '*.hpp' | sort) | |
TEST_SRCS = $(shell find test -type f -name '*.hpp' -o -name '*.cpp' | sort) | ||
# list of sources in the examples directory. | ||
EXAMPLE_SRCS = $(shell find docs/examples -type f -name '*.cpp' | sort) | ||
# list of sources in the tool directory. | ||
TOOL_SRCS = $(shell find tool -type f -name '*.cpp' | sort) | ||
|
||
# target version definition | ||
TARGET_MAJOR_VERSION := 0 | ||
TARGET_MINOR_VERSION := 3 | ||
TARGET_PATCH_VERSION := 8 | ||
TARGET_PATCH_VERSION := 9 | ||
TARGET_VERSION_FULL := $(TARGET_MAJOR_VERSION).$(TARGET_MINOR_VERSION).$(TARGET_PATCH_VERSION) | ||
VERSION_MACRO_FILE := include/fkYAML/detail/macros/version_macros.hpp | ||
|
||
|
@@ -129,7 +131,7 @@ reuse: update-reuse-templates | |
pipx run reuse annotate $(SRCS) --template fkYAML \ | ||
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \ | ||
--license MIT --year "2023-2024" --style c | ||
pipx run reuse annotate $(TEST_SRCS) $(EXAMPLE_SRCS) --template fkYAML_support \ | ||
pipx run reuse annotate $(TEST_SRCS) $(EXAMPLE_SRCS) $(TOOL_SRCS) --template fkYAML_support \ | ||
--copyright "Kensuke Fukutani <[email protected]>" --copyright-style spdx \ | ||
--license MIT --year "2023-2024" --style c | ||
pipx run reuse lint | ||
|
@@ -167,13 +169,29 @@ html-coverage: lcov-coverage | |
--title "fkYAML: A C++ header-only YAML library" \ | ||
--legend --demangle-cpp --show-details --branch-coverage | ||
|
||
################# | ||
# Benchmark # | ||
################# | ||
|
||
bm-debug: | ||
cmake -B build_bm_debug -S . -DCMAKE_BUILD_TYPE=Debug -DFK_YAML_RUN_BENCHMARK=ON | ||
cmake --build build_bm_debug --config Debug | ||
./build_bm_debug/tool/benchmark/benchmarker ./tool/benchmark/macos.yml > ./tool/benchmark/result_debug.log | ||
|
||
bm-release: | ||
cmake -B build_bm_release -S . -DCMAKE_BUILD_TYPE=Release -DFK_YAML_RUN_BENCHMARK=ON | ||
cmake --build build_bm_release --config Release | ||
./build_bm_release/tool/benchmark/benchmarker ./tool/benchmark/macos.yml > ./tool/benchmark/result_release.log | ||
|
||
################### | ||
# Maintenance # | ||
################### | ||
|
||
clean: | ||
rm -rf \ | ||
build \ | ||
build_bm_debug \ | ||
build_bm_release \ | ||
build_clang_format \ | ||
build_clang_sanitizers \ | ||
build_clang_tidy \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// _______ __ __ __ _____ __ __ __ | ||
// | __| |_/ | \_/ |/ _ \ / \/ \| | fkYAML: A C++ header-only YAML library (supporting code) | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.8 | ||
// | __| _ < \_ _/| ___ | _ | |___ version 0.3.9 | ||
// |__| |_| \__| |_| |_| |_|___||___|______| https://github.com/fktn-k/fkYAML | ||
// | ||
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
|
Oops, something went wrong.