Skip to content
Snippets Groups Projects
Commit c399c90a authored by Tristan Matthews's avatar Tristan Matthews
Browse files

plugin_manager: fix missing return error

Refs #35083

Change-Id: I8de2439090a36a4aae8451c897d8168dc19cdf65
parent cd61af60
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ public: ...@@ -58,7 +58,7 @@ public:
static int32_t registerObject(const SFLPluginAPI* api, static int32_t registerObject(const SFLPluginAPI* api,
const int8_t* type, const int8_t* type,
const SFLPluginRegisterParams* params) { const SFLPluginRegisterParams* params) {
static_cast<PluginManager*>(api->context)->registerObject_(type, params); return static_cast<PluginManager*>(api->context)->registerObject_(type, params);
} }
int load(const std::string& path); int load(const std::string& path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment