[PATCH] D114234: [clang][dataflow] Add base types for building dataflow analyses
Yitzhak Mandelbaum via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 19 06:21:13 PST 2021
ymandel added inline comments.
================
Comment at: clang/lib/Analysis/FlowSensitive/DataflowAnalysis.cpp:21-22
+
+namespace clang {
+namespace dataflow {
+
----------------
It's more common in .cpp files to use using declarations instead:
```
using clang;
using dataflow;
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114234/new/
https://reviews.llvm.org/D114234
More information about the cfe-commits
mailing list