Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
gfx-effect-source: Make destructor virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaymar committed Jan 23, 2019
1 parent 5a54a67 commit f910312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/filter-custom-shader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace filter {

public:
Instance(obs_data_t*, obs_source_t*);
~Instance();
virtual ~Instance();

uint32_t get_width();
uint32_t get_height();
Expand Down
2 changes: 1 addition & 1 deletion source/gfx-effect-source.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ namespace gfx {

public:
effect_source(obs_data_t* data, obs_source_t* owner);
~effect_source();
virtual ~effect_source();

void get_properties(obs_properties_t* properties);
static void get_defaults(obs_data_t* data);
Expand Down

0 comments on commit f910312

Please sign in to comment.