2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-20 14:52:14 +00:00

Avoid digraphs

This commit is contained in:
Vinnie Falco
2020-10-21 08:11:29 -07:00
parent 7e9462454a
commit eff84d5b7f
3 changed files with 6 additions and 6 deletions

View File

@@ -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;
};

View File

@@ -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;

View File

@@ -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>
{
};