Lines Matching refs:nullptr_t
574 std::nullptr_t n = nullptr;
577 auto n2 = j.get<std::nullptr_t>();
580 CHECK_THROWS_AS(json(json::value_t::string).get<std::nullptr_t>(), json::type_error&);
581 CHECK_THROWS_AS(json(json::value_t::object).get<std::nullptr_t>(), json::type_error&);
582 CHECK_THROWS_AS(json(json::value_t::array).get<std::nullptr_t>(), json::type_error&);
583 CHECK_THROWS_AS(json(json::value_t::boolean).get<std::nullptr_t>(), json::type_error&);
584 … CHECK_THROWS_AS(json(json::value_t::number_integer).get<std::nullptr_t>(), json::type_error&);
585 … CHECK_THROWS_AS(json(json::value_t::number_unsigned).get<std::nullptr_t>(), json::type_error&);
586 CHECK_THROWS_AS(json(json::value_t::number_float).get<std::nullptr_t>(), json::type_error&);
588 CHECK_THROWS_WITH(json(json::value_t::string).get<std::nullptr_t>(),
590 CHECK_THROWS_WITH(json(json::value_t::object).get<std::nullptr_t>(),
592 CHECK_THROWS_WITH(json(json::value_t::array).get<std::nullptr_t>(),
594 CHECK_THROWS_WITH(json(json::value_t::boolean).get<std::nullptr_t>(),
596 CHECK_THROWS_WITH(json(json::value_t::number_integer).get<std::nullptr_t>(),
598 CHECK_THROWS_WITH(json(json::value_t::number_unsigned).get<std::nullptr_t>(),
600 CHECK_THROWS_WITH(json(json::value_t::number_float).get<std::nullptr_t>(),