[Lldb-commits] [lldb] [LLDB][NFC] Create a namespace for the DWARF plugin (PR #68150)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 4 11:22:56 PDT 2023


================
@@ -18,7 +18,9 @@
 #include "llvm/DebugInfo/DWARF/DWARFLocationExpression.h"
 #include <functional>
 
+namespace lldb_plugin::dwarf {
----------------
clayborg wrote:

Do we do this anywhere else? Should this be split into:
```
namespace lldb_plugin {
namespace dwarf {
```
Not sure if there is a llvm coding convention for this?

https://github.com/llvm/llvm-project/pull/68150


More information about the lldb-commits mailing list