Skip to content

Commit 0d5490d

Browse files
committed
Format
1 parent f5efd37 commit 0d5490d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/scale/enum_traits.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace scale {
3232
static constexpr bool is_default = true;
3333
};
3434

35-
#define SCALE_DEFINE_ENUM_VALUE_RANGE(enum_namespace, enum_name, min, max) \
35+
#define SCALE_DEFINE_ENUM_VALUE_RANGE(enum_namespace, enum_name, min, max) \
3636
template <> \
3737
struct scale::enum_traits<enum_namespace::enum_name> final { \
3838
using underlying = std::underlying_type_t<enum_namespace::enum_name>; \
@@ -41,7 +41,7 @@ namespace scale {
4141
};
4242

4343
// Mind that values should be enum constants, not numbers
44-
#define SCALE_DEFINE_ENUM_VALUE_LIST(enum_namespace, enum_name, ...) \
44+
#define SCALE_DEFINE_ENUM_VALUE_LIST(enum_namespace, enum_name, ...) \
4545
template <> \
4646
struct scale::enum_traits<enum_namespace::enum_name> final { \
4747
static constexpr enum_namespace::enum_name valid_values[] = {__VA_ARGS__}; \

0 commit comments

Comments
 (0)