Revert "core: Fix clang build"

This commit is contained in:
bunnei 2020-10-20 19:07:39 -07:00 committed by GitHub
parent fdd9154069
commit 3d592972dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
105 changed files with 667 additions and 906 deletions

View file

@ -470,7 +470,7 @@ public:
bool InvokeHLECallback(std::shared_ptr<Thread> thread);
s32 GetIdealCore() const {
u32 GetIdealCore() const {
return ideal_core;
}
@ -654,8 +654,8 @@ private:
Scheduler* scheduler = nullptr;
s32 ideal_core = -1;
u64 affinity_mask = 1;
u32 ideal_core{0xFFFFFFFF};
u64 affinity_mask{0x1};
s32 ideal_core_override = -1;
u64 affinity_mask_override = 0x1;