mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
Uninline constructors to reduce GetInstance() inlined code size.
This commit is contained in:
@@ -114,7 +114,7 @@ class Dispatcher : public DispatcherBase {
|
||||
void StartClient(const char* server_name, unsigned int port);
|
||||
|
||||
private:
|
||||
Dispatcher() : Dispatcher(Storage::GetInstance(), Notifier::GetInstance()) {}
|
||||
Dispatcher();
|
||||
Dispatcher(Storage& storage, Notifier& notifier)
|
||||
: DispatcherBase(storage, notifier) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user