diff options
| -rw-r--r-- | doc/src/index.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/index.rst b/doc/src/index.rst index 61c7ab6..6a785a1 100644 --- a/doc/src/index.rst +++ b/doc/src/index.rst @@ -83,11 +83,11 @@ Synopsis // Constructors - constexpr explicit new_type() noexcept(std::is_nothrow_default_constructible_v<BaseType>) = /*see below*/; + constexpr new_type() noexcept(std::is_nothrow_default_constructible_v<BaseType>) = /*see below*/; - constexpr explicit new_type(new_type const &) noexcept(std::is_nothrow_copy_constructible_v<BaseType>) = /*see below*/; + constexpr new_type(new_type const &) noexcept(std::is_nothrow_copy_constructible_v<BaseType>) = /*see below*/; - constexpr explicit new_type(new_type &&) noexcept(std::is_nothrow_move_constructible_v<BaseType>) = /*see below*/; + constexpr new_type(new_type &&) noexcept(std::is_nothrow_move_constructible_v<BaseType>) = /*see below*/; constexpr explicit new_type(BaseType const &) noexcept(std::is_nothrow_copy_constructible_v<BaseType>); |
