* Could someone here tell me how to use the K\_PLUGIN\_FACTORYWITHJSON macro? Everything tells me to use it like this ```C++ K_PLUGIN_FACTORY_WITH_JSON(SteelBreezeDecoFactory, "deco.json", registerPlugin(); registerPlugin();) ``` but when I do I get the following error. ````decoration.h:559:28: kpluginfactory.h:747:10: candidate template ignored: requirement 'InheritanceChecker::enabled' was not satisfied [with T = SteelBreeze::MyDecoration] kpluginfactory.h:814:10: candidate template ignored: requirement 'InheritanceWithMetaDataChecker::enabled' was not satisfied [with T = SteelBreeze::MyDecoration] kpluginfactory.h:760:10: candidate function template not viable: requires single argument 'keyword', but no arguments were provided kpluginfactory.h:830:10: candidate function template not viable: requires single argument 'instanceFunction', but no arguments were provided kpluginfactory.h:842:10: candidate function template not viable: requires single argument 'keyword', but no arguments were provided kpluginfactory.h:720:10: candidate function template not viable: requires 2 arguments, but 0 were provided kpluginfactory.h:789:10: candidate function template not viable: requires 2 arguments, but 0 were provided``` Apparently there is no function `registerPlugin` with 1 generic type and 0 arguments. Does anyone here know what I could do?