*: coding style
This commit is contained in:
@@ -21,8 +21,8 @@ struct meta_type_node;
|
||||
struct meta_context {
|
||||
dense_map<id_type, meta_type_node, identity> value{};
|
||||
|
||||
[[nodiscard]] static inline meta_context &from(meta_ctx &ctx);
|
||||
[[nodiscard]] static inline const meta_context &from(const meta_ctx &ctx);
|
||||
[[nodiscard]] inline static meta_context &from(meta_ctx &ctx);
|
||||
[[nodiscard]] inline static const meta_context &from(const meta_ctx &ctx);
|
||||
};
|
||||
|
||||
} // namespace internal
|
||||
|
||||
@@ -26,7 +26,7 @@ struct clazz_t {
|
||||
return value;
|
||||
}
|
||||
|
||||
static inline char c = 'c';
|
||||
inline static char c = 'c';
|
||||
int value;
|
||||
};
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ struct multi_setter_t {
|
||||
};
|
||||
|
||||
struct array_t {
|
||||
static inline int global[3];
|
||||
inline static int global[3];
|
||||
int local[5];
|
||||
};
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ struct succeeded_process: entt::process<succeeded_process, entt::scheduler::delt
|
||||
succeed();
|
||||
}
|
||||
|
||||
static inline unsigned int invoked;
|
||||
inline static unsigned int invoked;
|
||||
};
|
||||
|
||||
struct failed_process: entt::process<failed_process, entt::scheduler::delta_type> {
|
||||
@@ -36,7 +36,7 @@ struct failed_process: entt::process<failed_process, entt::scheduler::delta_type
|
||||
fail();
|
||||
}
|
||||
|
||||
static inline unsigned int invoked;
|
||||
inline static unsigned int invoked;
|
||||
};
|
||||
|
||||
struct Scheduler: ::testing::Test {
|
||||
|
||||
Reference in New Issue
Block a user