*: coding style

This commit is contained in:
Michele Caini
2023-11-17 16:26:21 +01:00
parent c26a24e713
commit e04f2bdb24
4 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -26,7 +26,7 @@ struct clazz_t {
return value;
}
static inline char c = 'c';
inline static char c = 'c';
int value;
};

View File

@@ -93,7 +93,7 @@ struct multi_setter_t {
};
struct array_t {
static inline int global[3];
inline static int global[3];
int local[5];
};

View File

@@ -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 {