diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2019-12-29 00:58:20 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2019-12-29 00:58:20 +0100 |
| commit | a501b37531c6b87195592009777918c3b38cc9e2 (patch) | |
| tree | a1254a869150202093dae5a648a4849ccc4b99f5 | |
| parent | 514d454a39321123847906f923655abab05c34f4 (diff) | |
| download | newtype-a501b37531c6b87195592009777918c3b38cc9e2.tar.xz newtype-a501b37531c6b87195592009777918c3b38cc9e2.zip | |
doc: remove explicit from standard constructors
| -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>); |
