[Lldb-commits] [PATCH] D123025: [lldb-vscode] Implement stderr/stdout on win32 and redirect lldb log to VSCode

Martin Storsjö via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 4 05:45:30 PDT 2022


mstorsjo added a reviewer: labath.
mstorsjo added inline comments.


================
Comment at: lldb/tools/lldb-vscode/OutputRedirector.cpp:12
+#else
+#include <fcntl.h>
+#include <io.h>
----------------
Minor style issue - I guess it'd be less of double negation, if we'd change the ifdef to `#if defined(_WIN32) .. #else`


================
Comment at: lldb/tools/lldb-vscode/OutputRedirector.cpp:55
       }
-      callback(StringRef(buffer, bytes_count).str());
+      callback(StringRef(buffer, bytes_count));
     }
----------------
This change looks unrelated (although I'm not familiar with this piece of code), although it's probably correct


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D123025



More information about the lldb-commits mailing list