[Lldb-commits] [PATCH] D136465: Make remote-android local ports configurable

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 24 15:33:16 PDT 2022


clayborg added a comment.

Is there any way to test this?



================
Comment at: lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp:95-97
+  if (gdbstub_port) {
+    local_port = std::stoi(gdbstub_port);
+  }
----------------
remove {} for single line if statements per LLVM coding guidelines


================
Comment at: lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp:137-139
+  if (platform_local_port) {
+    local_port = std::stoi(platform_local_port);
+  }
----------------
remove {} for single line if statements per LLVM coding guidelines


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136465/new/

https://reviews.llvm.org/D136465



More information about the lldb-commits mailing list