Skip to content

Commit

Permalink
Fix debug build assertion (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
colby-nyce authored Dec 2, 2024
1 parent 25e173f commit b201478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/RegisterDefnsJSON.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace atlas
cached_strings_.emplace_back(item["name"].GetString());
const char* name = cached_strings_.back().raw();

const sparta::RegisterBase::group_num_type group_num = item["group_num"].GetInt();
const sparta::RegisterBase::group_num_type group_num = item["group_num"].GetUint();
auto iter = group_idx_map_.find(group_num);
if (iter == group_idx_map_.end())
{
Expand Down

0 comments on commit b201478

Please sign in to comment.