[Lldb-commits] [PATCH] D50365: Add a new tool named "lldb-vscode" that implements the Visual Studio Code Debug Adaptor Protocol
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 16 09:20:07 PDT 2018
clayborg marked 13 inline comments as done.
clayborg added inline comments.
================
Comment at: tools/lldb-vscode/JSONUtils.cpp:472
+ char path[PATH_MAX] = "";
+ file.GetPath(path, sizeof(path));
+ if (path[0]) {
----------------
This is a SBFileSpec. We don't allow any STL to be used in API.
https://reviews.llvm.org/D50365
More information about the lldb-commits
mailing list