From a501b37531c6b87195592009777918c3b38cc9e2 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sun, 29 Dec 2019 00:58:20 +0100 Subject: doc: remove explicit from standard constructors --- doc/src/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') 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) = /*see below*/; + constexpr new_type() noexcept(std::is_nothrow_default_constructible_v) = /*see below*/; - constexpr explicit new_type(new_type const &) noexcept(std::is_nothrow_copy_constructible_v) = /*see below*/; + constexpr new_type(new_type const &) noexcept(std::is_nothrow_copy_constructible_v) = /*see below*/; - constexpr explicit new_type(new_type &&) noexcept(std::is_nothrow_move_constructible_v) = /*see below*/; + constexpr new_type(new_type &&) noexcept(std::is_nothrow_move_constructible_v) = /*see below*/; constexpr explicit new_type(BaseType const &) noexcept(std::is_nothrow_copy_constructible_v); -- cgit v1.2.3