mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Uninline constructors to reduce GetInstance() inlined code size.
This commit is contained in:
@@ -99,7 +99,7 @@ class Storage {
|
||||
bool GetRpcResult(bool blocking, unsigned int call_uid, std::string* result);
|
||||
|
||||
private:
|
||||
Storage() : Storage(Notifier::GetInstance(), RpcServer::GetInstance()) {}
|
||||
Storage();
|
||||
Storage(Notifier& notifier, RpcServer& rpcserver);
|
||||
Storage(const Storage&) = delete;
|
||||
Storage& operator=(const Storage&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user