Remove redundant static

This commit is contained in:
Maurice Heumann 2023-02-13 18:47:04 +01:00
parent d3296528e4
commit 54584b5f73

View File

@ -38,8 +38,8 @@ namespace component_loader
};
};
#define REGISTER_COMPONENT(name) \
namespace \
{ \
static component_loader::installer<name> __component; \
#define REGISTER_COMPONENT(name) \
namespace \
{ \
component_loader::installer<name> __component; \
}