Closed miker2 closed 2 years ago
Instead of using dynamic_pointer_cast to do type checking in a number of places, we can use config::types::ConfigBase::type, which will be more efficient. In some cases, we must dynamic cast, but not all.
dynamic_pointer_cast
config::types::ConfigBase::type
All instances are currently in config_actions.h.
config_actions.h
Instead of using
dynamic_pointer_cast
to do type checking in a number of places, we can useconfig::types::ConfigBase::type
, which will be more efficient. In some cases, we must dynamic cast, but not all.All instances are currently in
config_actions.h
.