You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (v.is<picojson::array>()) {
auto & arr = v.get<picojson::array>();
for (picojson::array::const_iterator iter = arr.begin();
iter != arr.end(); ++iter) {
if (iter->is<picojson::object>()) {
iter->get<picojson::object>().at("id_int").get<int>();
}
}
}
This generates a linking error on VS2019.
Error LNK2019 unresolved external symbol "public: int const & __thiscall picojson::value::get(void)const " (??$get@H@value@picojson@@QBEABHXZ) referenced in function "void __cdecl item_json::parse(void)" (?parse@item_json@@yaxxz)
The text was updated successfully, but these errors were encountered:
This generates a linking error on VS2019.
Error LNK2019 unresolved external symbol "public: int const & __thiscall picojson::value::get(void)const " (??$get@H@value@picojson@@QBEABHXZ) referenced in function "void __cdecl item_json::parse(void)" (?parse@item_json@@yaxxz)
The text was updated successfully, but these errors were encountered: