2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-02 21:02:18 +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

@@ -17,7 +17,7 @@ namespace json {
class pointer_test
{
bool
hasLocation(error_code const& ec)
hasLocation(system::error_code const& ec)
{
return ec.has_location();
}
@@ -354,10 +354,10 @@ public:
testEscaped();
testNested();
testErrors();
testNonThrowing<error_code>();
testNonThrowing<system::error_code>();
testNonThrowing<std::error_code>();
testSet();
testSetNonThrowing<error_code>();
testSetNonThrowing<system::error_code>();
testSetNonThrowing<std::error_code>();
}
};