diff options
Diffstat (limited to 'include/yacppdic/detail/internal/functor/alloc_functor.hpp')
-rw-r--r-- | include/yacppdic/detail/internal/functor/alloc_functor.hpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/include/yacppdic/detail/internal/functor/alloc_functor.hpp b/include/yacppdic/detail/internal/functor/alloc_functor.hpp index 687f182..ac09f9f 100644 --- a/include/yacppdic/detail/internal/functor/alloc_functor.hpp +++ b/include/yacppdic/detail/internal/functor/alloc_functor.hpp @@ -13,8 +13,8 @@ namespace yacppdic::internal template <typename Return> struct InvokeReturnWrapper { - template <typename... Args> - static auto call(Args &&...args) -> Return; + template <typename... Params> + static auto call(Params &&...args) noexcept -> Return; }; /** @@ -23,32 +23,32 @@ struct InvokeReturnWrapper template <class Function, class Allocator, class FunctionSignature> class AllocFunctor; -template <class Function, class Allocator, class Return, class... Args> -class AllocFunctor<Function, Allocator, Return(Args...)> +template <class Function, class Allocator, class Return, class... Params> +class AllocFunctor<Function, Allocator, Return(Params...)> { public: using Target = Function; using Alloc = Allocator; - explicit AllocFunctor(Target &&function); + explicit AllocFunctor(Target &&function) noexcept; - explicit AllocFunctor(const Target &function, const Alloc &allocator); + explicit AllocFunctor(const Target &function, const Alloc &allocator) noexcept; - explicit AllocFunctor(const Target &function, Alloc &&allocator); + explicit AllocFunctor(const Target &function, Alloc &&allocator) noexcept; - explicit AllocFunctor(Target &&function, Alloc &&allocator); + explicit AllocFunctor(Target &&function, Alloc &&allocator) noexcept; - auto operator()(Args &&...args) -> Return; + auto operator()(Params &&...args) noexcept -> Return; - [[nodiscard]] auto target() const -> const Target &; + [[nodiscard]] auto target() const noexcept -> const Target &; - [[nodiscard]] auto get_allocator() const -> const Alloc &; + [[nodiscard]] auto get_allocator() const noexcept -> const Alloc &; - [[nodiscard]] auto clone() const -> AllocFunctor *; + [[nodiscard]] auto clone() const noexcept -> AllocFunctor *; void destroy() noexcept; - static void destroy_and_delete(AllocFunctor *functor); + static void destroy_and_delete(AllocFunctor *functor) noexcept; private: CompressedPair<Function, Allocator> _function; @@ -60,25 +60,25 @@ private: template <class Function, class FB> class DefaultAllocFunctor; -template <class Function, class Return, class... Args> -class DefaultAllocFunctor<Function, Return(Args...)> +template <class Function, class Return, class... Params> +class DefaultAllocFunctor<Function, Return(Params...)> { public: using Target = Function; - explicit DefaultAllocFunctor(Target &&function); + explicit DefaultAllocFunctor(Target &&function) noexcept; - explicit DefaultAllocFunctor(const Target &function); + explicit DefaultAllocFunctor(const Target &function) noexcept; - auto operator()(Args &&...args) -> Return; + auto operator()(Params &&...args) noexcept -> Return; - auto target() const -> const Target &; + auto target() const noexcept -> const Target &; - auto clone() const -> DefaultAllocFunctor *; + auto clone() const noexcept -> DefaultAllocFunctor *; void destroy() noexcept; - static void destroy_and_delete(DefaultAllocFunctor *function); + static void destroy_and_delete(DefaultAllocFunctor *function) noexcept; private: Function _function; |