aboutsummaryrefslogtreecommitdiff
path: root/src/DI/auto_wirable.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DI/auto_wirable.tpp')
-rw-r--r--src/DI/auto_wirable.tpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DI/auto_wirable.tpp b/src/DI/auto_wirable.tpp
index a99d82b..3b42cc4 100644
--- a/src/DI/auto_wirable.tpp
+++ b/src/DI/auto_wirable.tpp
@@ -3,8 +3,8 @@
#include "auto_wirable.hpp"
template <class Interface, class ObjectImpl, class... Dependencies>
-std::shared_ptr<Interface> AutoWirable<Interface, ObjectImpl, Dependencies...>::resolve(
- const Container &container) noexcept
+auto AutoWirable<Interface, ObjectImpl, Dependencies...>::resolve(
+ const Container &container) noexcept -> std::shared_ptr<Interface>
{
return std::make_shared<ObjectImpl>(container.get<Dependencies>()...);
}