Skip to content

Commit fd1f6b2

Browse files
committed
Fix styling
1 parent b1dbf02 commit fd1f6b2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/iris/fixed_string.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct basic_fixed_string
3737
template<class CharT, std::size_t N>
3838
basic_fixed_string(CharT const (&)[N]) -> basic_fixed_string<CharT, N - 1>;
3939

40-
template <std::size_t N>
40+
template<std::size_t N>
4141
using fixed_string = basic_fixed_string<char, N>;
4242

4343
} // iris

test/enum.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ enum class SpellType : std::uint8_t
3131
ATTR_THUNDER = 1 << 4,
3232
};
3333

34-
template <>
34+
template<>
3535
struct iris::bitops_enabled<MyFlags> : std::true_type
3636
{
3737
static MyFlags parse(std::string_view sv) noexcept
@@ -44,7 +44,7 @@ struct iris::bitops_enabled<MyFlags> : std::true_type
4444
}
4545
};
4646

47-
template <>
47+
template<>
4848
struct iris::bitops_enabled<SpellType> : std::true_type
4949
{
5050
static constexpr int min_bit = 2;

0 commit comments

Comments
 (0)