diff options
| -rw-r--r-- | serialize/json-helper.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/serialize/json-helper.hpp b/serialize/json-helper.hpp index c6dadf53..ebac9eba 100644 --- a/serialize/json-helper.hpp +++ b/serialize/json-helper.hpp @@ -5,6 +5,8 @@ #include <filesystem> #include <nlohmann/json.hpp> +namespace floormat { + struct json_helper final { template<typename t> [[nodiscard]] @@ -41,3 +43,5 @@ void json_helper::to_json(const t& self, const std::filesystem::path& pathname) s << '\n'; s.flush(); } + +} // namespace floormat |
