From 514d454a39321123847906f923655abab05c34f4 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sun, 29 Dec 2019 00:56:23 +0100 Subject: doc: add missing new_type constructors --- doc/src/index.rst | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'doc') diff --git a/doc/src/index.rst b/doc/src/index.rst index e0ebaad..61c7ab6 100644 --- a/doc/src/index.rst +++ b/doc/src/index.rst @@ -85,6 +85,10 @@ Synopsis constexpr explicit 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 explicit 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); constexpr explicit new_type(BaseType &&) noexcept(std::is_nothrow_move_constructible_v); -- cgit v1.2.3