Remove extra ; after macro usages
This commit is contained in:
parent
6849d50247
commit
7aca5e6076
@ -295,7 +295,7 @@ class person_without_default_constructor_1
|
|||||||
, age{std::move(age_)}
|
, 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
|
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
|
} // namespace persons
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user