Clear namespace.

This commit is contained in:
ykiko
2024-12-08 15:21:27 +08:00
parent d99b571088
commit 809d5ecae7
6 changed files with 25 additions and 17 deletions

View File

@@ -38,11 +38,11 @@ TEST(Support, JSON) {
{"y", 2},
};
auto point = clice::json::deserialize<Point>(std::move(object));
auto point = json::deserialize<Point>(std::move(object));
ASSERT_EQ(point.x, 1);
ASSERT_EQ(point.y, 2);
auto result = clice::json::serialize(point);
auto result = json::serialize(point);
ASSERT_EQ(result, object);
}