Skip to content

Commit

Permalink
Merge pull request #26125 from yurivict/FreeBSD-2
Browse files Browse the repository at this point in the history
Fix build with clang where build fails because the virtual table of StubPlatformTheme isn't found
  • Loading branch information
cbjeukendrup authored Jan 18, 2025
2 parents e0aee3e + 3af4269 commit a8615a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/framework/ui/internal/platform/stub/stubplatformtheme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
using namespace muse::ui;
using namespace muse::async;

StubPlatformTheme::~StubPlatformTheme() = default;

void StubPlatformTheme::startListening()
{
}
Expand Down
2 changes: 2 additions & 0 deletions src/framework/ui/internal/platform/stub/stubplatformtheme.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ namespace muse::ui {
class StubPlatformTheme : public IPlatformTheme
{
public:
~StubPlatformTheme() override;

void startListening() override;
void stopListening() override;

Expand Down

0 comments on commit a8615a8

Please sign in to comment.