[Lldb-commits] [lldb] [lldb][AArch64] Fix arm64 hardware breakpoint/watchpoint to arm32 process. (PR #147198)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 21 02:39:34 PDT 2025
================
@@ -0,0 +1,63 @@
+#include "NativeRegisterContextLinuxArm64Shared.h"
+
+using namespace lldb_private::process_linux::arm64;
+
+namespace lldb_private {
+namespace process_linux {
+namespace arm64 {
----------------
DavidSpickett wrote:
You don't need `using namespace` if you're then going to open the same namespaces.
Here I would just write out the fully qualified names and have `using namespace` if you still need it after doing that. `lldb_private::proccess_linux::arm64::ReadHardwareDebugInfo` for example.
https://github.com/llvm/llvm-project/pull/147198
More information about the lldb-commits
mailing list