diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-29 17:40:04 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:57 +0200 |
commit | a039c8ad36779903571419cb06cd052f8fc41512 (patch) | |
tree | 4fdced6941a048bdd4b032fab7012bca00a6028e /src/DI/auto_wirable.tpp | |
parent | acf72075ed32e5a679d49ffedc0c28d8ac2aea8b (diff) |
refactor: use trailing return types
Diffstat (limited to 'src/DI/auto_wirable.tpp')
-rw-r--r-- | src/DI/auto_wirable.tpp | 4 |
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>()...); } |