diff options
| author | 2022-03-20 00:48:32 -0700 | |
|---|---|---|
| committer | 2022-03-24 18:13:34 -0700 | |
| commit | c64e1ae1041eebd44ef043658f091e204a0b8276 (patch) | |
| tree | d487959abe3f87c0fc129289e1d73997d63b3c23 | |
| parent | hle: vi: NativeWindow: Fix trivially copyable issues. (diff) | |
| download | yuzu-c64e1ae1041eebd44ef043658f091e204a0b8276.tar.gz yuzu-c64e1ae1041eebd44ef043658f091e204a0b8276.tar.xz yuzu-c64e1ae1041eebd44ef043658f091e204a0b8276.zip | |
hle: nvflinger: ConsumerBase: Mark ctor as explicit.
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/nvflinger/consumer_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/consumer_base.h b/src/core/hle/service/nvflinger/consumer_base.h index d72160c2c..9ab949420 100644 --- a/src/core/hle/service/nvflinger/consumer_base.h +++ b/src/core/hle/service/nvflinger/consumer_base.h | |||
| @@ -26,7 +26,7 @@ public: | |||
| 26 | void Connect(bool controlled_by_app); | 26 | void Connect(bool controlled_by_app); |
| 27 | 27 | ||
| 28 | protected: | 28 | protected: |
| 29 | ConsumerBase(std::unique_ptr<BufferQueueConsumer> consumer_); | 29 | explicit ConsumerBase(std::unique_ptr<BufferQueueConsumer> consumer_); |
| 30 | virtual ~ConsumerBase(); | 30 | virtual ~ConsumerBase(); |
| 31 | 31 | ||
| 32 | virtual void OnFrameAvailable(const BufferItem& item) override; | 32 | virtual void OnFrameAvailable(const BufferItem& item) override; |