瀏覽代碼

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

bunnei 5 年之前
父節點
當前提交
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
-    constexpr s64 GetScheduledCount() const {
+    s64 GetScheduledCount() const {
         return schedule_count;
     }
 
     /// Increments the process schedule count, used for thread yielding.
-    constexpr void IncrementScheduledCount() {
+    void IncrementScheduledCount() {
         ++schedule_count;
     }