aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/src/c4/yml/node.cpp
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2026-03-09 19:06:36 -0700
committerLiam Mitchell <[email protected]>2026-03-09 19:06:36 -0700
commitd1abc50ee9d4fb72efc646e17decafea741caa34 (patch)
treee4288e00f2f7ca0391b83d986efcb69d3ba66a83 /thirdparty/ryml/src/c4/yml/node.cpp
parentAllow requests with invalid content-types unless specified in command line or... (diff)
parentupdated chunk–block analyser (#818) (diff)
downloadzen-d1abc50ee9d4fb72efc646e17decafea741caa34.tar.xz
zen-d1abc50ee9d4fb72efc646e17decafea741caa34.zip
Merge branch 'main' into lm/restrict-content-type
Diffstat (limited to 'thirdparty/ryml/src/c4/yml/node.cpp')
-rw-r--r--thirdparty/ryml/src/c4/yml/node.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/thirdparty/ryml/src/c4/yml/node.cpp b/thirdparty/ryml/src/c4/yml/node.cpp
deleted file mode 100644
index 50c7a0b60..000000000
--- a/thirdparty/ryml/src/c4/yml/node.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "c4/yml/node.hpp"
-
-namespace c4 {
-namespace yml {
-
-
-
-
-//-----------------------------------------------------------------------------
-//-----------------------------------------------------------------------------
-//-----------------------------------------------------------------------------
-
-size_t NodeRef::set_key_serialized(c4::fmt::const_base64_wrapper w)
-{
- _apply_seed();
- csubstr encoded = this->to_arena(w);
- this->set_key(encoded);
- return encoded.len;
-}
-
-size_t NodeRef::set_val_serialized(c4::fmt::const_base64_wrapper w)
-{
- _apply_seed();
- csubstr encoded = this->to_arena(w);
- this->set_val(encoded);
- return encoded.len;
-}
-
-} // namespace yml
-} // namespace c4