From 7ab695fe570f842ebdff6b6cb80fa643f17a828b Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 16 May 2022 22:35:30 +0200 Subject: refactor: clean up factory & related internal components --- .../detail/internal/functor/copyable_functor.hpp | 27 +++++++++++----------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'include/yacppdic/detail/internal/functor/copyable_functor.hpp') diff --git a/include/yacppdic/detail/internal/functor/copyable_functor.hpp b/include/yacppdic/detail/internal/functor/copyable_functor.hpp index b305d38..3350781 100644 --- a/include/yacppdic/detail/internal/functor/copyable_functor.hpp +++ b/include/yacppdic/detail/internal/functor/copyable_functor.hpp @@ -15,24 +15,27 @@ namespace yacppdic::internal template class CopyableFunctor; -template -class CopyableFunctor - : public ICopyableFunctor +template +class CopyableFunctor + : public ICopyableFunctor { public: - explicit CopyableFunctor(Function &&function); + explicit CopyableFunctor(Function &&function) noexcept; - explicit CopyableFunctor(const Function &function, const Allocator &allocator); + explicit CopyableFunctor( + const Function &function, + const Allocator &allocator + ) noexcept; - explicit CopyableFunctor(const Function &function, Allocator &&allocator); + explicit CopyableFunctor(const Function &function, Allocator &&allocator) noexcept; - explicit CopyableFunctor(Function &&function, Allocator &&allocator); + explicit CopyableFunctor(Function &&function, Allocator &&allocator) noexcept; - auto operator()(Args &&...args) -> Return override; + auto operator()(Params &&...args) noexcept -> Return override; - auto clone() const -> ICopyableFunctor * override; + auto clone() const noexcept -> ICopyableFunctor * override; - void clone(ICopyableFunctor *functor) const override; + void clone(ICopyableFunctor *functor) const noexcept override; void destroy() noexcept override; @@ -41,10 +44,8 @@ public: [[nodiscard]] auto target(const std::type_info &type_info) const noexcept -> const void * override; - [[nodiscard]] auto target_type() const noexcept -> const std::type_info & override; - private: - AllocFunctor _functor; + AllocFunctor _functor; }; } // namespace yacppdic::internal -- cgit v1.2.3-18-g5258