2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-19 04:12:14 +00:00

deprecate type aliases

This commit is contained in:
Dmitry Arkhipov
2024-01-11 16:03:57 +03:00
parent 411b9a9201
commit bacc644f93
81 changed files with 1418 additions and 1351 deletions

View File

@@ -29,7 +29,7 @@ public:
return true;
}
bool hasLocation(error_code const& ec)
bool hasLocation(system::error_code const& ec)
{
return ec.has_location();
}
@@ -71,14 +71,14 @@ public:
void
good(string_view s)
{
good_impl<error_code>(s);
good_impl<system::error_code>(s);
good_impl<std::error_code>(s);
}
void
bad(string_view s)
{
bad_impl<error_code>(s);
bad_impl<system::error_code>(s);
bad_impl<std::error_code>(s);
}