remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistency

Signed-off-by: arades79 <scravers@protonmail.com>
This commit is contained in:
arades79 2023-02-14 11:13:47 -05:00
parent 3e078dbb07
commit 60a68839ee
102 changed files with 300 additions and 307 deletions

View file

@ -97,7 +97,7 @@ Loader::ResultStatus ProgramMetadata::Load(VirtualFile file) {
/*static*/ ProgramMetadata ProgramMetadata::GetDefault() {
// Allow use of cores 0~3 and thread priorities 1~63.
constexpr static u32 default_thread_info_capability = 0x30007F7;
constexpr u32 default_thread_info_capability = 0x30007F7;
ProgramMetadata result;