-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Closed
Labels
release item: ⚡ improvementsolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation
Milestone
Description
//as follow, this will fail as the key_type pof map is std::string_view
std::map<string_view, bool> mv{{"111",true}, {"222", false}, {"333", true}};
nlohmann::json j4{mv};
//another: fail again, the std::string_view is the json_key
nlohmann::json j5;
std::string_view key = "my_key"sv;
j5[key] = 100;
egorpugin, AraHaan, lanyizi, bl-ue, yaoxinliu and 3 more
Metadata
Metadata
Assignees
Labels
release item: ⚡ improvementsolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation