Просмотр исходного кода

hle: kernel: Process: Various style fixes based on code review feedback.

bunnei 5 лет назад
Родитель
Сommit
1bdb756d28
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/core/hle/kernel/process.h

+ 2 - 2
src/core/hle/kernel/process.h

@@ -217,12 +217,12 @@ public:
     }
     }
 
 
     /// Gets the process schedule count, used for thread yelding
     /// Gets the process schedule count, used for thread yelding
-    constexpr s64 GetScheduledCount() const {
+    s64 GetScheduledCount() const {
         return schedule_count;
         return schedule_count;
     }
     }
 
 
     /// Increments the process schedule count, used for thread yielding.
     /// Increments the process schedule count, used for thread yielding.
-    constexpr void IncrementScheduledCount() {
+    void IncrementScheduledCount() {
         ++schedule_count;
         ++schedule_count;
     }
     }