diff options
| author | 2019-06-18 20:53:21 -0400 | |
|---|---|---|
| committer | 2019-07-05 15:49:32 -0400 | |
| commit | d20ede40b1e9cd0539982fb1feb3b13af3501ea2 (patch) | |
| tree | a084fedd90a6a3cc3e11b099f4ddfe194d49c8ea /src/video_core/gpu_synch.h | |
| parent | NVFlinger: Correct GCC compile error (diff) | |
| download | yuzu-d20ede40b1e9cd0539982fb1feb3b13af3501ea2.tar.gz yuzu-d20ede40b1e9cd0539982fb1feb3b13af3501ea2.tar.xz yuzu-d20ede40b1e9cd0539982fb1feb3b13af3501ea2.zip | |
NVServices: Styling, define constructors as explicit and corrections
Diffstat (limited to 'src/video_core/gpu_synch.h')
| -rw-r--r-- | src/video_core/gpu_synch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/gpu_synch.h b/src/video_core/gpu_synch.h index 58d258503..07bcc47f1 100644 --- a/src/video_core/gpu_synch.h +++ b/src/video_core/gpu_synch.h | |||
| @@ -27,7 +27,8 @@ public: | |||
| 27 | void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override; | 27 | void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override; |
| 28 | 28 | ||
| 29 | protected: | 29 | protected: |
| 30 | void TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const override {} | 30 | void TriggerCpuInterrupt([[maybe_unused]] u32 syncpoint_id, |
| 31 | [[maybe_unused]] u32 value) const override {} | ||
| 31 | }; | 32 | }; |
| 32 | 33 | ||
| 33 | } // namespace VideoCommon | 34 | } // namespace VideoCommon |