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/function_wrapper.tpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DI/function_wrapper.tpp') diff --git a/src/DI/function_wrapper.tpp b/src/DI/function_wrapper.tpp index 540a7aa..6a9c317 100644 --- a/src/DI/function_wrapper.tpp +++ b/src/DI/function_wrapper.tpp @@ -8,7 +8,7 @@ FunctionWrapper::FunctionWrapper(Interface func) noexcept : _func(fun } template -Interface FunctionWrapper::get() const noexcept +auto FunctionWrapper::get() const noexcept -> Interface { return _func; } -- cgit v1.2.3-18-g5258