diff options
Diffstat (limited to 'src/dataflow/users.h')
-rw-r--r-- | src/dataflow/users.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dataflow/users.h b/src/dataflow/users.h index faa41f7f9..d8bee8ac4 100644 --- a/src/dataflow/users.h +++ b/src/dataflow/users.h @@ -34,7 +34,7 @@ namespace wasm::DataFlow { // where y, z etc. are nodes that use x, that is, x is in their // values vector. class Users { - typedef std::unordered_set<DataFlow::Node*> UserSet; + using UserSet = std::unordered_set<DataFlow::Node*>; std::unordered_map<DataFlow::Node*, UserSet> users; |