Skip to content

Commit

Permalink
Fix Linux GCC build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
egorodet committed Aug 18, 2024
1 parent 9ac8e63 commit 599e284
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ ProgramArgumentBinding::ProgramArgumentBinding(const Context& context, const Set
{ }

ProgramArgumentBinding::ProgramArgumentBinding(const ProgramArgumentBinding& other)
: m_context(other.m_context)
: Emitter(other)
, enable_shared_from_this(other)
, m_context(other.m_context)
, m_settings(other.m_settings)
, m_resource_views(other.m_resource_views)
, m_emit_callback_enabled(other.m_emit_callback_enabled)
Expand Down

0 comments on commit 599e284

Please sign in to comment.