diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-14 18:02:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:56 +0200 |
commit | dc6222611ad14a33f642396558ba84ecba9d6605 (patch) | |
tree | d759020233b66be62c5539209a03842d283b67a9 /src/DI/auto_wirable.tpp | |
parent | dbab54ebf134b6ab2cf719d7c26a191fbffeed34 (diff) |
perf: add noexcept almost everywhere
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 6c0d111..a99d82b 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) +std::shared_ptr<Interface> AutoWirable<Interface, ObjectImpl, Dependencies...>::resolve( + const Container &container) noexcept { return std::make_shared<ObjectImpl>(container.get<Dependencies>()...); } |