Skip to content

Commit

Permalink
Downgrade ryml to 0.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <kai-uwe.hermann@pionix.de>
  • Loading branch information
hikinggrass authored and corneliusclaussen committed Aug 22, 2023
1 parent 313fd64 commit 3cc54ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
ryml:
git: https://github.com/biojppm/rapidyaml
git_tag: v0.5.0
git_tag: v0.4.1
options: ["CMAKE_POSITION_INDEPENDENT_CODE ON"]
libwebsockets:
git: https://github.com/warmcat/libwebsockets.git
Expand Down
2 changes: 1 addition & 1 deletion lib/yaml_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct RymlCallbackInitializer {
}
};

static nlohmann::ordered_json ryml_to_nlohmann_json(const c4::yml::ConstNodeRef& ryml_node) {
static nlohmann::ordered_json ryml_to_nlohmann_json(const c4::yml::NodeRef& ryml_node) {
if (ryml_node.empty()) {
return nullptr;
} else if (ryml_node.is_map()) {
Expand Down

0 comments on commit 3cc54ff

Please sign in to comment.