add noexcept tests
This commit is contained in:
parent
af94e712c7
commit
b56117b148
3 changed files with 7 additions and 2 deletions
src
|
@ -840,7 +840,7 @@ template <typename = void, typename = void>
|
|||
struct adl_serializer
|
||||
{
|
||||
template <typename Json, typename T>
|
||||
static void from_json(Json&& j, T& val)
|
||||
static void from_json(Json&& j, T& val) noexcept(noexcept(::nlohmann::from_json(std::forward<Json>(j), val)))
|
||||
{
|
||||
::nlohmann::from_json(std::forward<Json>(j), val);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue