diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-20 18:24:54 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-20 18:24:54 +0000 |
commit | 375652641509b75e93a284deea44f6f1be13e7b3 (patch) | |
tree | d00822fc1ac8a5605edbd6f9e7701076b9fbd4dc /lib | |
parent | Add support for smooth faces (diff) | |
download | ilt-375652641509b75e93a284deea44f6f1be13e7b3.tar.bz2 ilt-375652641509b75e93a284deea44f6f1be13e7b3.tar.xz ilt-375652641509b75e93a284deea44f6f1be13e7b3.zip |
Swap @ prefix for p. prefix for special value names
Diffstat (limited to 'lib')
-rw-r--r-- | lib/persistence.cpp | 4 | ||||
-rw-r--r-- | lib/persistence.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/persistence.cpp b/lib/persistence.cpp index 239e425..543f2fd 100644 --- a/lib/persistence.cpp +++ b/lib/persistence.cpp @@ -81,12 +81,12 @@ namespace Persistence { void PersistenceWrite::setType(const std::string_view tn, const Persistable * p) { - out.pushKey("@typeid"); + out.pushKey("p.typeid"); out.pushValue(tn); first = false; if (shared) { out.nextValue(); - out.pushKey("@id"); + out.pushKey("p.id"); out.pushValue(p->getId()); } } diff --git a/lib/persistence.h b/lib/persistence.h index 4fbff4c..c311067 100644 --- a/lib/persistence.h +++ b/lib/persistence.h @@ -340,14 +340,14 @@ namespace Persistence { select(const std::string & mbr) override { using namespace std::literals; - if (mbr == "@typeid"sv) { + if (mbr == "p.typeid"sv) { if (this->v) { throw std::runtime_error("cannot set object type after creation"); } return this->template make_s<MakeObjectByTypeName>(this->v); } if constexpr (shared) { - if (mbr == "@id"sv) { + if (mbr == "p.id"sv) { return this->template make_s<RememberObjectById>(this->v); } } |