Quellcode durchsuchen

hle: kernel k_process: Remove unnecessary .at usage with thread pinning methods.

bunnei vor 4 Jahren
Ursprung
Commit
9a9e7dd78b
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      src/core/hle/kernel/k_process.h

+ 3 - 3
src/core/hle/kernel/k_process.h

@@ -259,7 +259,7 @@ public:
 
 
     [[nodiscard]] KThread* GetPinnedThread(s32 core_id) const {
     [[nodiscard]] KThread* GetPinnedThread(s32 core_id) const {
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
-        return pinned_threads.at(core_id);
+        return pinned_threads[core_id];
     }
     }
 
 
     /// Gets 8 bytes of random data for svcGetInfo RandomEntropy
     /// Gets 8 bytes of random data for svcGetInfo RandomEntropy
@@ -369,14 +369,14 @@ private:
     void PinThread(s32 core_id, KThread* thread) {
     void PinThread(s32 core_id, KThread* thread) {
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
         ASSERT(thread != nullptr);
         ASSERT(thread != nullptr);
-        ASSERT(pinned_threads.at(core_id) == nullptr);
+        ASSERT(pinned_threads[core_id] == nullptr);
         pinned_threads[core_id] = thread;
         pinned_threads[core_id] = thread;
     }
     }
 
 
     void UnpinThread(s32 core_id, KThread* thread) {
     void UnpinThread(s32 core_id, KThread* thread) {
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
         ASSERT(0 <= core_id && core_id < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
         ASSERT(thread != nullptr);
         ASSERT(thread != nullptr);
-        ASSERT(pinned_threads.at(core_id) == thread);
+        ASSERT(pinned_threads[core_id] == thread);
         pinned_threads[core_id] = nullptr;
         pinned_threads[core_id] = nullptr;
     }
     }