From a039c8ad36779903571419cb06cd052f8fc41512 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 29 Mar 2022 17:40:04 +0200 Subject: refactor: use trailing return types --- src/DI/interfaces/wrapper.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DI/interfaces/wrapper.hpp') diff --git a/src/DI/interfaces/wrapper.hpp b/src/DI/interfaces/wrapper.hpp index cde555f..e22ea7f 100644 --- a/src/DI/interfaces/wrapper.hpp +++ b/src/DI/interfaces/wrapper.hpp @@ -13,5 +13,5 @@ template class IWrapper : public IGenericWrapper { public: - [[nodiscard]] virtual Interface get() const noexcept = 0; + [[nodiscard]] virtual auto get() const noexcept -> Interface = 0; }; -- cgit v1.2.3-18-g5258