Skip to content

Commit

Permalink
fix building in language mode c++23 with clang
Browse files Browse the repository at this point in the history
  • Loading branch information
scheffle committed Aug 25, 2024
1 parent 0400b63 commit 19191b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 1 addition & 2 deletions vstgui/lib/cgraphicspath.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ class CGraphicsPath : public AtomicReferenceCounted
CRect getBoundingBox ();
//@}

CGraphicsPath (const PlatformGraphicsPathFactoryPtr& factory,
PlatformGraphicsPathPtr&& path = nullptr);
CGraphicsPath (const PlatformGraphicsPathFactoryPtr& factory, PlatformGraphicsPathPtr&& path);
CGraphicsPath (const CGraphicsPath& p);
~CGraphicsPath () noexcept override;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class Delegate : public Application::DelegateAdapter,
{
public:
Delegate ();
virtual ~Delegate ();

// Application::IDelegate
void finishLaunching () override;
Expand Down Expand Up @@ -424,6 +425,8 @@ Delegate::Delegate ()
CFrame::kDefaultKnobMode = CKnobMode::kLinearMode;
}

Delegate::~Delegate () = default;

//------------------------------------------------------------------------
void Delegate::finishLaunching ()
{
Expand Down

0 comments on commit 19191b3

Please sign in to comment.