GH-1528: Remove broken Queue/PQueue class, replace with std::deque

This commit is contained in:
Tim Wojtulewicz 2021-04-27 13:25:02 -07:00
parent b44ae62ce4
commit 9dee652444
8 changed files with 22 additions and 21 deletions

View file

@ -150,7 +150,7 @@ bool Stmt::SetLocationInfo(const Location* start, const Location* end)
// Optimistically just put it at the end.
map.push_back(new_mapping);
int curr_idx = map.length() - 1;
size_t curr_idx = map.size() - 1;
if ( curr_idx == 0 )
return true;