Skip to content

Commit

Permalink
unordered map
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Sep 18, 2024
1 parent 600d632 commit b4a8d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/passes/OptimizeAddedConstants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct GetParents {
struct Inner : public ExpressionStackWalker<Inner> {
void visitLocalGet(LocalGet* curr) { parentMap[curr] = getParent(); }

std::map<Expression*, Expression*> parentMap;
std::unordered_map<Expression*, Expression*> parentMap;
} inner;
};

Expand Down

0 comments on commit b4a8d8c

Please sign in to comment.