diff options
| author | Stefan Boberg <[email protected]> | 2021-05-17 23:54:12 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-05-17 23:54:12 +0200 |
| commit | 0c1f9858097cd207bf1dcea34588aaaf686ae4cf (patch) | |
| tree | 48963a4046d66d8869a2a7e31588caec274c9b97 /zencore/compactbinary.cpp | |
| parent | Added oplog prep step to avoid redundant chunk transfers (diff) | |
| parent | Removed some experimental dependencies (diff) | |
| download | zen-0c1f9858097cd207bf1dcea34588aaaf686ae4cf.tar.xz zen-0c1f9858097cd207bf1dcea34588aaaf686ae4cf.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen into main
Diffstat (limited to 'zencore/compactbinary.cpp')
| -rw-r--r-- | zencore/compactbinary.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/zencore/compactbinary.cpp b/zencore/compactbinary.cpp index cae6c506d..b42bcec7e 100644 --- a/zencore/compactbinary.cpp +++ b/zencore/compactbinary.cpp @@ -7,7 +7,6 @@ #include <zencore/trace.h> #include <doctest/doctest.h> -#include <ryml/ryml.hpp> #include <string_view> namespace zen { @@ -1111,23 +1110,6 @@ SaveCompactBinary(BinaryWriter& Ar, const CbObjectView& Object) ////////////////////////////////////////////////////////////////////////// -StringBuilderBase& -ToString(CbObjectView& Root, StringBuilderBase& OutString) -{ - ryml::Tree Tree; - - ryml::NodeRef r = Tree.rootref(); - r |= ryml::MAP; - - for (CbFieldViewIterator It = Root.CreateViewIterator(); It; ++It) - { - } - - return OutString; -} - -////////////////////////////////////////////////////////////////////////// - void uson_forcelink() { |