From 112c2c421245cc6891d7851e85bd8f41e7eee41f Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 15 Jun 2020 23:16:34 -0500 Subject: [PATCH] [ox/fs] Change Claw type IDs to domain based namespaces --- deps/ox/src/ox/fs/filesystem/filelocation.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/ox/src/ox/fs/filesystem/filelocation.hpp b/deps/ox/src/ox/fs/filesystem/filelocation.hpp index f7f29255..bc894d50 100644 --- a/deps/ox/src/ox/fs/filesystem/filelocation.hpp +++ b/deps/ox/src/ox/fs/filesystem/filelocation.hpp @@ -26,11 +26,11 @@ class FileAddress { friend ox::Error model(T*, FileAddress*); public: - static constexpr auto TypeName = "ox::FileAddress"; + static constexpr auto TypeName = "net.drinkingtea.ox.FileAddress"; static constexpr auto Fields = 2; union Data { - static constexpr auto TypeName = "ox::FileAddress::Data"; + static constexpr auto TypeName = "net.drinkingtea.ox.FileAddress.Data"; static constexpr auto Fields = 3; char *path; const char *constPath;