Skip to content

Commit

Permalink
Merge pull request #12411 from lioncash/build
Browse files Browse the repository at this point in the history
Software/SWGfx: Default destructor in cpp file
  • Loading branch information
AdmiralCurtiss committed Dec 13, 2023
2 parents 7b57a4a + e06480a commit 3f06d32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Source/Core/VideoBackends/Software/SWGfx.cpp
Expand Up @@ -22,6 +22,8 @@ SWGfx::SWGfx(std::unique_ptr<SWOGLWindow> window) : m_window(std::move(window))
{
}

SWGfx::~SWGfx() = default;

bool SWGfx::IsHeadless() const
{
return m_window->IsHeadless();
Expand Down
3 changes: 2 additions & 1 deletion Source/Core/VideoBackends/Software/SWGfx.h
Expand Up @@ -12,7 +12,8 @@ namespace SW
class SWGfx final : public AbstractGfx
{
public:
SWGfx(std::unique_ptr<SWOGLWindow> window);
explicit SWGfx(std::unique_ptr<SWOGLWindow> window);
~SWGfx() override;

bool IsHeadless() const override;
virtual bool SupportsUtilityDrawing() const override;
Expand Down

0 comments on commit 3f06d32

Please sign in to comment.