[PATCH] D83731: Add Debug Info Size to Symbol Status

Greg Clayton via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 20 21:16:33 PDT 2020


clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.

Just a space before the '(' of the debug info size.



================
Comment at: lldb/tools/lldb-vscode/JSONUtils.cpp:357
+  std::ostringstream oss;
+  oss << "(";
+  oss << std::fixed << std::setprecision(1);
----------------
Need as space before the '(' character as we append this string to the "Symbols loaded." string.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D83731





More information about the cfe-commits mailing list