Skip to content

Commit

Permalink
field_view constructors are now stable
Browse files Browse the repository at this point in the history
Updated Doxygen docs to mark them as stable

close #219
  • Loading branch information
anarthal committed Mar 5, 2024
1 parent 6b85294 commit 0fceeb3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions include/boost/mysql/field_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class field_view
BOOST_CXX14_CONSTEXPR field_view() = default;

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding NULL.
* \brief Constructs a `field_view` holding NULL.
* \details
* Caution: `field_view(NULL)` will <b>not</b> match this overload. It will try to construct
* a `string_view` from a NULL C string, causing undefined behavior.
Expand All @@ -87,7 +87,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(std::nullptr_t) noexcept {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding an `int64`.
* \brief Constructs a `field_view` holding an `int64`.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -109,7 +109,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(long long v) noexcept : impl_{std::int64_t(v)} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `uint64`.
* \brief Constructs a `field_view` holding a `uint64`.
* \par Exception safety
* No-throw guarantee.
*
Expand Down Expand Up @@ -151,7 +151,7 @@ class field_view
#endif

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a string.
* \brief Constructs a `field_view` holding a string.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -162,7 +162,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(string_view v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a blob.
* \brief Constructs a `field_view` holding a blob.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -173,7 +173,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(blob_view v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `float`.
* \brief Constructs a `field_view` holding a `float`.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -183,7 +183,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(float v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `double`.
* \brief Constructs a `field_view` holding a `double`.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -193,7 +193,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(double v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `date`.
* \brief Constructs a `field_view` holding a `date`.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -203,7 +203,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(const date& v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `datetime`.
* \brief Constructs a `field_view` holding a `datetime`.
* \par Exception safety
* No-throw guarantee.
*
Expand All @@ -213,7 +213,7 @@ class field_view
BOOST_CXX14_CONSTEXPR explicit field_view(const datetime& v) noexcept : impl_{v} {}

/**
* \brief (EXPERIMENTAL) Constructs a `field_view` holding a `time`.
* \brief Constructs a `field_view` holding a `time`.
* \par Exception safety
* No-throw guarantee.
*
Expand Down

0 comments on commit 0fceeb3

Please sign in to comment.