Skip to content

Commit

Permalink
Merge pull request #7 from pierreguillot/dev/fix-warning
Browse files Browse the repository at this point in the history
PluginWrapper: fix zero as null pointer constant
  • Loading branch information
cannam authored Feb 19, 2024
2 parents 0ee0a3d + c4afb37 commit 63e0c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vamp-hostsdk/PluginWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class PluginWrapper : public Plugin
if (w) return w;
PluginWrapper *pw = dynamic_cast<PluginWrapper *>(m_plugin);
if (pw) return pw->getWrapper<WrapperType>();
return 0;
return nullptr;
}

/**
Expand Down

0 comments on commit 63e0c3b

Please sign in to comment.