diff options
| author | Tilka <tilkax@gmail.com> | 2024-10-11 18:31:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-11 18:31:56 +0100 |
| commit | 696ff5baead06ab18e4fa80b70bcb7ce36618474 (patch) | |
| tree | eda79c38cbe3b018b91038d642ccc48bcc9f93b8 /Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp | |
| parent | b5f7a508742671410c44fc6f0e66d0ce789c3b57 (diff) | |
| parent | e8d5fb89e4465e8ef64920f12e7cb60e82057658 (diff) | |
Merge pull request #13121 from mitaclaw/synthesize-operator!=
C++20: Synthesize `operator!=` From `operator==`
Diffstat (limited to 'Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp index 5921c4a3e5..9325c7649e 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/FBInfo.cpp @@ -15,8 +15,3 @@ bool FBInfo::operator==(const FBInfo& other) const return m_height == other.m_height && m_width == other.m_width && m_texture_format == other.m_texture_format; } - -bool FBInfo::operator!=(const FBInfo& other) const -{ - return !(*this == other); -} |
