TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ from_json() [19/19]

template<typename BasicJsonType >
void nlohmann::detail::from_json ( const BasicJsonType &  j,
typename std::nullptr_t &  n 
)

Definition at line 3897 of file json.hpp.

3898{
3899 if (JSON_HEDLEY_UNLIKELY(!j.is_null()))
3900 {
3901 JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name()), j));
3902 }
3903
3904 n = nullptr;
3905}