core: Resolve variable shadowing

This commit is contained in:
Chloe Marcec
2020-12-06 00:13:23 +11:00
parent 1279c7ce7a
commit 8b8bef57e5
25 changed files with 141 additions and 130 deletions

View File

@@ -52,8 +52,8 @@ struct KernelCore::Impl {
: synchronization{system}, time_manager{system}, global_handle_table{kernel}, system{
system} {}
void SetMulticore(bool is_multicore) {
this->is_multicore = is_multicore;
void SetMulticore(bool multicore_state) {
is_multicore = multicore_state;
}
void Initialize(KernelCore& kernel) {