aboutsummaryrefslogtreecommitdiff
path: root/src/DI/container.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DI/container.cpp')
-rw-r--r--src/DI/container.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/DI/container.cpp b/src/DI/container.cpp
index 1b5dc55..f27b1fa 100644
--- a/src/DI/container.cpp
+++ b/src/DI/container.cpp
@@ -1,6 +1,9 @@
#include "container.hpp"
-void Container::add(BaseObjectType type, const WrapperPtr<IGenericWrapper> &wrapper) noexcept
+void Container::add(
+ BaseObjectType type,
+ const WrapperPtr<IGenericWrapper> &wrapper
+) noexcept
{
- _bindings.insert({type, wrapper});
+ _bindings.insert({ type, wrapper });
}