diff options
author | Sam Clegg <sbc@chromium.org> | 2022-11-15 10:02:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 18:02:27 +0000 |
commit | 59cbdd818dc3397a823a37e9821fd32f4522b2fc (patch) | |
tree | 58470bfc11591d2e70f1b79645061c1a23beb75d /src/dataflow | |
parent | 236f12f7df64f10e1238bf2d66b1216f700b15df (diff) | |
download | binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.tar.gz binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.tar.bz2 binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.zip |
Switch from `typedef` to `using` in C++ code. NFC (#5258)
This is more modern and (IMHO) easier to read than that old C typedef
syntax.
Diffstat (limited to 'src/dataflow')
-rw-r--r-- | src/dataflow/graph.h | 2 | ||||
-rw-r--r-- | src/dataflow/users.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h index 0380adf14..6bd01d895 100644 --- a/src/dataflow/graph.h +++ b/src/dataflow/graph.h @@ -84,7 +84,7 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { // When we are in unreachable code (i.e., a path that does not // need to be merged in anywhere), we set the length of this // vector to 0 to indicate that. - typedef std::vector<Node*> Locals; + using Locals = std::vector<Node*>; // The current local state in the control flow path being emitted. Locals locals; 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; |