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/container.hpp | |
parent | acf72075ed32e5a679d49ffedc0c28d8ac2aea8b (diff) |
refactor: use trailing return types
Diffstat (limited to 'src/DI/container.hpp')
-rw-r--r-- | src/DI/container.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DI/container.hpp b/src/DI/container.hpp index 2efb265..83f24ae 100644 --- a/src/DI/container.hpp +++ b/src/DI/container.hpp @@ -32,13 +32,13 @@ public: Container() noexcept = default; template <class Interface> - BindingBuilder<Interface> bind() noexcept; + auto bind() noexcept -> BindingBuilder<Interface>; template <class Interface, class = std::enable_if_t<std::is_abstract_v<Interface>>> - std::shared_ptr<Interface> get() const noexcept; + auto get() const noexcept -> std::shared_ptr<Interface>; template <typename Interface, typename = std::enable_if_t<is_func_v<Interface>>> - Interface get() const noexcept; + auto get() const noexcept -> Interface; std::unordered_map<BaseObjectType, std::shared_ptr<IGenericWrapper>, ObjectTypeHasher> bindings; |