File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ struct matjson::Serialize<jukebox::index::IndexSongMetadata> {
243243 std::vector<int > songs;
244244 songs.reserve (value[" songs" ].size ());
245245 for (const matjson::Value& i : value[" songs" ]) {
246- geode::Result<int64_t > id = i.asInt ();
246+ geode::Result<std:: intmax_t > id = i.asInt ();
247247 if (!id) {
248248 continue ;
249249 }
@@ -253,7 +253,7 @@ struct matjson::Serialize<jukebox::index::IndexSongMetadata> {
253253 std::vector<int > verifiedLevelIDs;
254254 verifiedLevelIDs.reserve (value[" verifiedLevelIDs" ].size ());
255255 for (const matjson::Value& i : value[" verifiedLevelIDs" ]) {
256- geode::Result<int64_t > res = i.asInt ();
256+ geode::Result<std:: intmax_t > res = i.asInt ();
257257 if (!res) {
258258 continue ;
259259 }
You can’t perform that action at this time.
0 commit comments