Skip to content

Commit

Permalink
docs: charset_ref is implementation defined
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed Jul 10, 2024
1 parent eaccfd6 commit 2d35d94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/boost/url/grammar/charset.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ find_if_not(
//------------------------------------------------

#ifndef BOOST_URL_DOCS
namespace detail {
namespace implementation_defined {

template<class CharSet>
struct charset_ref
Expand Down Expand Up @@ -176,7 +176,7 @@ struct charset_ref
}
};

} // detail
} // implementation_defined
#endif

/** Return a reference to a character set
Expand Down Expand Up @@ -221,11 +221,11 @@ constexpr
typename std::enable_if<
is_charset<CharSet>::value &&
! std::is_same<CharSet,
detail::charset_ref<CharSet> >::value,
detail::charset_ref<CharSet> >::type
implementation_defined::charset_ref<CharSet> >::value,
implementation_defined::charset_ref<CharSet> >::type
ref(CharSet const& cs) noexcept
{
return detail::charset_ref<
return implementation_defined::charset_ref<
CharSet>{cs};
}
#endif
Expand Down

0 comments on commit 2d35d94

Please sign in to comment.