diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/newtype/deriving.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/newtype/deriving.hpp b/include/newtype/deriving.hpp index 7224d55..731e0ce 100644 --- a/include/newtype/deriving.hpp +++ b/include/newtype/deriving.hpp @@ -13,9 +13,9 @@ namespace nt * Create a new derivation clause with the given derivables */ template<typename... DerivableTags> - auto constexpr deriving(derivable<DerivableTags>... request) -> derivation_clause<DerivableTags...> + auto constexpr deriving(derivable<DerivableTags>... features) noexcept -> derivation_clause<DerivableTags...> { - return {request...}; + return {features...}; } } // namespace nt |
