aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2019-12-29 00:58:20 +0100
committerFelix Morgner <felix.morgner@gmail.com>2019-12-29 00:58:20 +0100
commita501b37531c6b87195592009777918c3b38cc9e2 (patch)
treea1254a869150202093dae5a648a4849ccc4b99f5
parent514d454a39321123847906f923655abab05c34f4 (diff)
downloadnewtype-a501b37531c6b87195592009777918c3b38cc9e2.tar.xz
newtype-a501b37531c6b87195592009777918c3b38cc9e2.zip
doc: remove explicit from standard constructors
-rw-r--r--doc/src/index.rst6
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>);