[kernel] standardize static constexpr order in kobject headers

The kobject headers flip-flopped the class constants between "static
constexpr" and "constexpr static".
This commit is contained in:
Justin C. Miller
2022-10-22 16:49:25 -07:00
parent 99b59393fe
commit 6ac4ec601d
7 changed files with 17 additions and 23 deletions

View File

@@ -12,8 +12,7 @@ class system :
{
public:
/// Capabilities on system given to init
constexpr static j6_cap_t init_caps = j6_cap_system_all;
static constexpr j6_cap_t init_caps = j6_cap_system_all;
static constexpr kobject::type type = kobject::type::system;
inline static system & get() { return s_instance; }