From 7aca5e6076a8fd27e4b3cf16d9177012e918813e Mon Sep 17 00:00:00 2001 From: Vyacheslav Zhdanovskiy Date: Wed, 2 Nov 2022 18:42:08 +0300 Subject: [PATCH] Remove extra `;` after macro usages --- tests/src/unit-udt_macro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/unit-udt_macro.cpp b/tests/src/unit-udt_macro.cpp index f069b4fb8..eb8808c7a 100644 --- a/tests/src/unit-udt_macro.cpp +++ b/tests/src/unit-udt_macro.cpp @@ -295,7 +295,7 @@ class person_without_default_constructor_1 , age{std::move(age_)} {} - NLOHMANN_DEFINE_TYPE_INTRUSIVE_ONLY_SERIALIZE(person_without_default_constructor_1, name, age); + NLOHMANN_DEFINE_TYPE_INTRUSIVE_ONLY_SERIALIZE(person_without_default_constructor_1, name, age) }; class person_without_default_constructor_2 @@ -315,7 +315,7 @@ class person_without_default_constructor_2 {} }; -NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_ONLY_SERIALIZE(person_without_default_constructor_2, name, age); +NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_ONLY_SERIALIZE(person_without_default_constructor_2, name, age) } // namespace persons