mirror of
https://github.com/boostorg/json.git
synced 2026-02-20 14:52:14 +00:00
Avoid digraphs
This commit is contained in:
@@ -17,12 +17,12 @@
|
||||
namespace boost {
|
||||
namespace system {
|
||||
template<>
|
||||
struct is_error_code_enum<::boost::json::error>
|
||||
struct is_error_code_enum< ::boost::json::error >
|
||||
{
|
||||
static bool const value = true;
|
||||
};
|
||||
template<>
|
||||
struct is_error_condition_enum<::boost::json::condition>
|
||||
struct is_error_condition_enum< ::boost::json::condition >
|
||||
{
|
||||
static bool const value = true;
|
||||
};
|
||||
@@ -33,12 +33,12 @@ struct is_error_condition_enum<::boost::json::condition>
|
||||
|
||||
namespace std {
|
||||
template<>
|
||||
struct is_error_code_enum<::boost::json::error>
|
||||
struct is_error_code_enum< ::boost::json::error >
|
||||
{
|
||||
static bool const value = true;
|
||||
};
|
||||
template<>
|
||||
struct is_error_condition_enum<::boost::json::condition>
|
||||
struct is_error_condition_enum< ::boost::json::condition >
|
||||
{
|
||||
static bool const value = true;
|
||||
};
|
||||
|
||||
@@ -2883,7 +2883,7 @@ BOOST_JSON_NS_END
|
||||
#ifndef BOOST_JSON_DOCS
|
||||
namespace std {
|
||||
template<>
|
||||
struct hash<::boost::json::string>
|
||||
struct hash< ::boost::json::string >
|
||||
{
|
||||
hash() = default;
|
||||
hash(hash const&) = default;
|
||||
|
||||
@@ -3888,7 +3888,7 @@ namespace std {
|
||||
/** Tuple-like size access for key_value_pair
|
||||
*/
|
||||
template<>
|
||||
struct tuple_size<::boost::json::key_value_pair>
|
||||
struct tuple_size< ::boost::json::key_value_pair >
|
||||
: std::integral_constant<std::size_t, 2>
|
||||
{
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user