mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
Uninline constructors to reduce GetInstance() inlined code size.
This commit is contained in:
@@ -20,6 +20,9 @@ using namespace nt;
|
||||
|
||||
ATOMIC_STATIC_INIT(Storage)
|
||||
|
||||
Storage::Storage()
|
||||
: Storage(Notifier::GetInstance(), RpcServer::GetInstance()) {}
|
||||
|
||||
Storage::Storage(Notifier& notifier, RpcServer& rpc_server)
|
||||
: m_notifier(notifier), m_rpc_server(rpc_server) {
|
||||
m_terminating = false;
|
||||
|
||||
Reference in New Issue
Block a user