diff options
Diffstat (limited to 'src/dataflow/graph.h')
-rw-r--r-- | src/dataflow/graph.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h index 6256c4c1e..0380adf14 100644 --- a/src/dataflow/graph.h +++ b/src/dataflow/graph.h @@ -31,9 +31,7 @@ #include "ir/literal-utils.h" #include "wasm.h" -namespace wasm { - -namespace DataFlow { +namespace wasm::DataFlow { // Main logic to generate IR for a function. This is implemented as a // visitor on the wasm, where visitors return a Node* that either @@ -797,8 +795,6 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { const Name FAKE_CALL = "fake$dfo$call"; }; -} // namespace DataFlow - -} // namespace wasm +} // namespace wasm::DataFlow #endif // wasm_dataflow_graph_h |