Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
goblinhack committed Jan 8, 2025
1 parent fb87724 commit d3aec67
Show file tree
Hide file tree
Showing 11 changed files with 250 additions and 265 deletions.
24 changes: 9 additions & 15 deletions src/c_plus_plus_serializer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,7 @@ static inline std::istream &operator>>(std::istream &in, Bits< C< T, N > & > v)
////////////////////////////////////////////////////////////////////////////

template < template < class K, class V, class Compare = std::less< K >,
class Alloc = std::allocator< std::pair< const K, V > > >
class M,
class Alloc = std::allocator< std::pair< const K, V > > > class M,
class K, class V >

static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, V > & > const m)
Expand All @@ -314,8 +313,7 @@ static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, V > & > co
}

template < template < class K, class V, class Compare = std::less< K >,
class Alloc = std::allocator< std::pair< const K, V > > >
class M,
class Alloc = std::allocator< std::pair< const K, V > > > class M,
class K, class V >

static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, const V > & > const m)
Expand All @@ -332,8 +330,7 @@ static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, const V >
}

template < template < class K, class V, class Compare = std::less< K >,
class Alloc = std::allocator< std::pair< const K, V > > >
class M,
class Alloc = std::allocator< std::pair< const K, V > > > class M,
class K, class V >

static inline std::istream &operator>>(std::istream &in, Bits< M< K, V > & > m)
Expand All @@ -360,8 +357,7 @@ static inline std::istream &operator>>(std::istream &in, Bits< M< K, V > & > m)
////////////////////////////////////////////////////////////////////////////

template < template < class K, class T, class Hash = std::hash< K >, class Pred = std::equal_to< K >,
class Alloc = std::allocator< std::pair< const K, T > > >
class M,
class Alloc = std::allocator< std::pair< const K, T > > > class M,
class K, class V >

static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, V > & > const m)
Expand All @@ -378,8 +374,7 @@ static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, V > & > co
}

template < template < class K, class T, class Hash = std::hash< K >, class Pred = std::equal_to< K >,
class Alloc = std::allocator< std::pair< const K, T > > >
class M,
class Alloc = std::allocator< std::pair< const K, T > > > class M,
class K, class V >

static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, const V > & > const m)
Expand All @@ -396,8 +391,7 @@ static inline std::ostream &operator<<(std::ostream &out, Bits< M< K, const V >
}

template < template < class K, class T, class Hash = std::hash< K >, class Pred = std::equal_to< K >,
class Alloc = std::allocator< std::pair< const K, T > > >
class M,
class Alloc = std::allocator< std::pair< const K, T > > > class M,
class K, class V >

static inline std::istream &operator>>(std::istream &in, Bits< M< K, V > & > m)
Expand Down Expand Up @@ -439,9 +433,9 @@ static inline std::ostream &operator<<(std::ostream &out, Bits< M< K > & > const
return out;
}

template < template < class K, class Compare = std::less< const K >, class Allocator = std::allocator< const K > >
class M,
class K >
template <
template < class K, class Compare = std::less< const K >, class Allocator = std::allocator< const K > > class M,
class K >

static inline std::ostream &operator<<(std::ostream &out, Bits< M< K > & > const m)
{
Expand Down
Loading

0 comments on commit d3aec67

Please sign in to comment.