summaryrefslogtreecommitdiff
path: root/src/ir/equivalent_sets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/equivalent_sets.h')
-rw-r--r--src/ir/equivalent_sets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/equivalent_sets.h b/src/ir/equivalent_sets.h
index 657ff9894..4b2cd7db7 100644
--- a/src/ir/equivalent_sets.h
+++ b/src/ir/equivalent_sets.h
@@ -26,7 +26,7 @@ namespace wasm {
//
struct EquivalentSets {
// A set of indexes. This is ordered for deterministic iteration.
- typedef std::set<Index> Set;
+ using Set = std::set<Index>;
std::unordered_map<Index, std::shared_ptr<Set>> indexSets;