- 13 Sep, 2024 2 commits
-
-
Federico Di Pierro authored
Plus, check that the content is what we actually expect. Signed-off-by:Federico Di Pierro <nierro92@gmail.com>
-
Federico Di Pierro authored
Signed-off-by:Federico Di Pierro <nierro92@gmail.com>
-
- 27 Aug, 2024 2 commits
-
-
Orgad Shaneh authored
They were commented out before 0733aeb4, but when that commit was reverted in 2b65c65e they were recovered uncommented.
-
Orgad Shaneh authored
Amends 26faac38.
-
- 22 Aug, 2024 2 commits
-
-
Simon Gene Gottlieb authored
-
Simon Gene Gottlieb authored
-
- 21 Aug, 2024 1 commit
-
-
Cristian Le authored
-
- 18 Aug, 2024 1 commit
-
-
Christopher Fore authored
GCC 15 will no longer include it by default, resulting in build failures in projects that do not explicitly include it. Error: src/emitterutils.cpp:221:11: error: 'uint16_t' was not declared in this scope 221 | std::pair<uint16_t, uint16_t> EncodeUTF16SurrogatePair(int codePoint) { | ^~~~~~~~ src/emitterutils.cpp:13:1: note: 'uint16_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' 12 | #include "yaml-cpp/null.h" +++ |+#include <cstdint> 13 | #include "yaml-cpp/ostream_wrapper.h" Tests pass. Closes: #1307 See-also: https://gcc.gnu.org/pipermail/gcc-cvs/2024-August/407124.html See-also: https://bugs.gentoo.org/937412 Signed-off-by:Christopher Fore <csfore@posteo.net>
-
- 06 Aug, 2024 2 commits
-
-
Simon Gene Gottlieb authored
jekyll/liquid got hung up on `{{"Daniel", 26}, {"Jesse", 24}}`. The reason is that `{{...}}` are used as variables that are replaced by there values. In this case we have a YAML object that looks the same. This issue can be fixed by surrounding the block into `{% raw %}...{% endraw %}` tags. -
NameSirius authored
-
- 05 Aug, 2024 2 commits
-
-
Jesse Beder authored
This reverts commit 1f5e971f. See #1306; the previous commit caused an error with -Wpedantic: yaml-cpp/include/yaml-cpp/emitterstyle.h:13:2: error: extra ‘;’ [-Wpedantic] Since the original commit was to resolve warnings, reverting and the OP can produce a new one that fixes this issue.
-
NameSirius authored
-
- 02 Aug, 2024 2 commits
-
-
Josiah VanderZee authored
The CMake format target does not use the correct .clang-format file in out-of-source builds. This instructs CMake to use the project root as the working directory for running the clang-format command so that it finds the .clang-format file.
-
Josiah VanderZee authored
Since `std::string` has to be dynamically constructed and destructed, it could be accessed before initialization or after destruction in a multithreaded context. By using constant c-strings instead, we guarantee that the array will be valid for the whole lifetime of the program. The use of `constexpr` also enforces this requirement. I have run clang-format on the file to format my changes according to CONTRIBUTING.md.
-
- 17 Jul, 2024 1 commit
-
-
Simon Gene Gottlieb authored
-
- 02 May, 2024 1 commit
-
-
Frank Osterfeld authored
These caused issues when used in a wasm project.
-
- 22 Feb, 2024 2 commits
-
-
Humberto Dias authored
-
Humberto Dias authored
-
- 28 Jan, 2024 1 commit
-
-
dependabot[bot] authored
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v2...v4 ) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by:
dependabot[bot] <support@github.com>
-
- 26 Jan, 2024 2 commits
-
-
Jason Beach authored
-
Alejandro-FA authored
-
- 04 Jan, 2024 2 commits
-
-
Trompettesib authored
-
Alexandre TISSOT authored
-
- 28 Dec, 2023 1 commit
-
-
Levi Armstrong authored
-
- 14 Dec, 2023 2 commits
-
-
Diogo Teles Sant'Anna authored
Signed-off-by:Diogo Teles Sant'Anna <diogoteles@google.com>
-
Diogo Teles Sant'Anna authored
Signed-off-by:Diogo Teles Sant'Anna <diogoteles@google.com>
-
- 27 Nov, 2023 2 commits
-
-
Alex Thiessen authored
-
Alex Thiessen authored
Protect from regressions due to use of undefined or implementation-specific behavior when using `std::` containers and smart pointers. This only has effect on platforms with the GNU standard C++ library. Refer to https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug_mode.html.
-
- 07 Nov, 2023 2 commits
-
-
Levi Armstrong authored
-
Levi Armstrong authored
-
- 23 Oct, 2023 1 commit
-
-
Gianfranco Costamagna authored
-
- 22 Oct, 2023 1 commit
-
-
Gianfranco Costamagna authored
There is no need to use the embedded gtest code copy in Linux systems, if they already provide the googletest framework system-wide. Search for it, and fallback to the embedded one if the system one is not detected. This patch has been also contributed by Simon Quigley <tsimonq2@debian.org>
-
- 12 Oct, 2023 4 commits
-
-
Ezekiel Warren authored
-
Ezekiel Warren authored
-
Pete Lewis authored
-
Pierre Wendling authored
* CMake: Add option to set the package install dir. * CMake: Fix generated config. - `YAML_CPP_SHARED_LIBS_BUILT` should not be set with a `PATH_VAR` as it would always evaluate to true. - `YAML_CPP_LIBRARIES` should used the exported target name including the namespace, but `check_required_components` shouldn't. - Use `CMAKE_CURRENT_LIST_DIR` to find the target file, instead of a `PATH_VAR`. Package managers such as vcpkg move CMake configs after installing. * CI: Test the generated CMake package. * CMake: Create add a deprecated yaml-cpp target. This target is meant to provide compatibility with versions prior to 0.8.0. * CMake: mark the yaml-cpp target as IMPORTED. --------- Co-authored-by:Jesse Beder <jbeder+github@gmail.com>
-
- 11 Oct, 2023 2 commits
-
-
Megamouse authored
Hide uninstall target unless YAML_CPP_INSTALL is set, and allow it to be disabled by YAML_CPP_DISABLE_UNINSTALL add_custom_target uninstall causes a clash with the same target in rtmidi (https://github.com/thestk/rtmidi ). "add_custom_target cannot create target "uninstall" because another target with the same name already exists. The existing target is a custom target created in source directory" Adds new option YAML_CPP_DISABLE_UNINSTALL fixes #1151 --------- Co-authored-by:
Megamouse <studienricky89@googlemail.de> Co-authored-by:
Jesse Beder <jbeder+github@gmail.com>
-
Alfi Maulana authored
-
- 21 Sep, 2023 1 commit
-
-
Paul Jurczak authored
-
- 17 Sep, 2023 1 commit
-
-
FireWolf authored
node/convert: Enable the template specialization for `std::string_view` properly when the library is compiled by MSVC on Windows. (#1227)
-