diff options
| author | Léo Lam <leolino.lam@gmail.com> | 2018-04-02 10:37:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-02 10:37:07 +0200 |
| commit | 80525cfd4e08eef14e0812a4cc15fa9ed0de3523 (patch) | |
| tree | 51fb0473db5e530f62072dc671ad3d28356aa02a /Source/Core/VideoCommon/AsyncRequests.cpp | |
| parent | 9d1c4401e5cbecf32b16b2b64ebc4715d5d4b15c (diff) | |
| parent | 672665dec001edae90fd1dcfdc94a0a54585c4bf (diff) | |
Merge pull request #6584 from lioncash/async-init
AsyncRequests: In-class initialize class members
Diffstat (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AsyncRequests.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index f41354730d..cab79c8bc2 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -12,9 +12,7 @@ AsyncRequests AsyncRequests::s_singleton; -AsyncRequests::AsyncRequests() : m_enable(false), m_passthrough(true) -{ -} +AsyncRequests::AsyncRequests() = default; void AsyncRequests::PullEventsInternal() { |
