🚨 remove linter warning
This commit is contained in:
parent
26196f25f6
commit
d047b3d495
3 changed files with 16 additions and 80 deletions
|
@ -36,7 +36,7 @@ class file_input_adapter
|
||||||
using char_type = char;
|
using char_type = char;
|
||||||
|
|
||||||
JSON_HEDLEY_NON_NULL(2)
|
JSON_HEDLEY_NON_NULL(2)
|
||||||
explicit file_input_adapter(std::FILE* f) noexcept
|
explicit file_input_adapter(std::FILE* f) noexcept
|
||||||
: m_file(f)
|
: m_file(f)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ class input_stream_adapter
|
||||||
input_stream_adapter& operator=(input_stream_adapter&) = delete;
|
input_stream_adapter& operator=(input_stream_adapter&) = delete;
|
||||||
input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete;
|
input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete;
|
||||||
|
|
||||||
input_stream_adapter(input_stream_adapter&& rhs) : is(rhs.is), sb(rhs.sb)
|
input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb)
|
||||||
{
|
{
|
||||||
rhs.is = nullptr;
|
rhs.is = nullptr;
|
||||||
rhs.sb = nullptr;
|
rhs.sb = nullptr;
|
||||||
|
|
|
@ -258,30 +258,14 @@ class json_sax_dom_parser
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class Exception>
|
||||||
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
||||||
const detail::exception& ex)
|
const Exception& ex)
|
||||||
{
|
{
|
||||||
errored = true;
|
errored = true;
|
||||||
if (allow_exceptions)
|
if (allow_exceptions)
|
||||||
{
|
{
|
||||||
// determine the proper exception type from the id
|
JSON_THROW(ex);
|
||||||
switch ((ex.id / 100) % 100)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::parse_error*>(&ex));
|
|
||||||
case 4:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::out_of_range*>(&ex));
|
|
||||||
// LCOV_EXCL_START
|
|
||||||
case 2:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::invalid_iterator*>(&ex));
|
|
||||||
case 3:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::type_error*>(&ex));
|
|
||||||
case 5:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::other_error*>(&ex));
|
|
||||||
default:
|
|
||||||
JSON_ASSERT(false);
|
|
||||||
// LCOV_EXCL_STOP
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -512,30 +496,14 @@ class json_sax_dom_callback_parser
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class Exception>
|
||||||
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
||||||
const detail::exception& ex)
|
const Exception& ex)
|
||||||
{
|
{
|
||||||
errored = true;
|
errored = true;
|
||||||
if (allow_exceptions)
|
if (allow_exceptions)
|
||||||
{
|
{
|
||||||
// determine the proper exception type from the id
|
JSON_THROW(ex);
|
||||||
switch ((ex.id / 100) % 100)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::parse_error*>(&ex));
|
|
||||||
case 4:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::out_of_range*>(&ex));
|
|
||||||
// LCOV_EXCL_START
|
|
||||||
case 2:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::invalid_iterator*>(&ex));
|
|
||||||
case 3:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::type_error*>(&ex));
|
|
||||||
case 5:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::other_error*>(&ex));
|
|
||||||
default:
|
|
||||||
JSON_ASSERT(false);
|
|
||||||
// LCOV_EXCL_STOP
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4500,7 +4500,7 @@ class file_input_adapter
|
||||||
using char_type = char;
|
using char_type = char;
|
||||||
|
|
||||||
JSON_HEDLEY_NON_NULL(2)
|
JSON_HEDLEY_NON_NULL(2)
|
||||||
explicit file_input_adapter(std::FILE* f) noexcept
|
explicit file_input_adapter(std::FILE* f) noexcept
|
||||||
: m_file(f)
|
: m_file(f)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -4554,7 +4554,7 @@ class input_stream_adapter
|
||||||
input_stream_adapter& operator=(input_stream_adapter&) = delete;
|
input_stream_adapter& operator=(input_stream_adapter&) = delete;
|
||||||
input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete;
|
input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete;
|
||||||
|
|
||||||
input_stream_adapter(input_stream_adapter&& rhs) : is(rhs.is), sb(rhs.sb)
|
input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb)
|
||||||
{
|
{
|
||||||
rhs.is = nullptr;
|
rhs.is = nullptr;
|
||||||
rhs.sb = nullptr;
|
rhs.sb = nullptr;
|
||||||
|
@ -5180,30 +5180,14 @@ class json_sax_dom_parser
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class Exception>
|
||||||
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
||||||
const detail::exception& ex)
|
const Exception& ex)
|
||||||
{
|
{
|
||||||
errored = true;
|
errored = true;
|
||||||
if (allow_exceptions)
|
if (allow_exceptions)
|
||||||
{
|
{
|
||||||
// determine the proper exception type from the id
|
JSON_THROW(ex);
|
||||||
switch ((ex.id / 100) % 100)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::parse_error*>(&ex));
|
|
||||||
case 4:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::out_of_range*>(&ex));
|
|
||||||
// LCOV_EXCL_START
|
|
||||||
case 2:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::invalid_iterator*>(&ex));
|
|
||||||
case 3:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::type_error*>(&ex));
|
|
||||||
case 5:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::other_error*>(&ex));
|
|
||||||
default:
|
|
||||||
JSON_ASSERT(false);
|
|
||||||
// LCOV_EXCL_STOP
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -5434,30 +5418,14 @@ class json_sax_dom_callback_parser
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class Exception>
|
||||||
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
|
||||||
const detail::exception& ex)
|
const Exception& ex)
|
||||||
{
|
{
|
||||||
errored = true;
|
errored = true;
|
||||||
if (allow_exceptions)
|
if (allow_exceptions)
|
||||||
{
|
{
|
||||||
// determine the proper exception type from the id
|
JSON_THROW(ex);
|
||||||
switch ((ex.id / 100) % 100)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::parse_error*>(&ex));
|
|
||||||
case 4:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::out_of_range*>(&ex));
|
|
||||||
// LCOV_EXCL_START
|
|
||||||
case 2:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::invalid_iterator*>(&ex));
|
|
||||||
case 3:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::type_error*>(&ex));
|
|
||||||
case 5:
|
|
||||||
JSON_THROW(*dynamic_cast<const detail::other_error*>(&ex));
|
|
||||||
default:
|
|
||||||
JSON_ASSERT(false);
|
|
||||||
// LCOV_EXCL_STOP
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue