diff options
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; |