clang-format using ./format.sh

This commit is contained in:
Mindaugas Vinkelis
2025-09-09 17:38:23 +03:00
parent 8bda82576e
commit 7ea1da0d48
20 changed files with 55 additions and 111 deletions

View File

@@ -95,14 +95,12 @@ namespace bitsery {
// and Derived2 member fnc we need explicitly select which function to use
template<>
struct SelectSerializeFnc<Derived2> : UseMemberFnc
{
};
{};
// multiple inheritance has non-member serialize function defined
template<>
struct SelectSerializeFnc<MultipleInheritance> : UseNonMemberFnc
{
};
{};
}
// some helper types

View File

@@ -191,14 +191,12 @@ namespace ext {
template<>
struct PolymorphicBaseClass<Shape>
: PolymorphicDerivedClasses<Circle, Rectangle>
{
};
{};
template<>
struct PolymorphicBaseClass<Rectangle>
: PolymorphicDerivedClasses<RoundedRectangle>
{
};
{};
}
}