[Lldb-commits] [lldb] 4647398 - [lldb] Fix a warning

Kazu Hirata via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 8 15:00:14 PDT 2025


Author: Kazu Hirata
Date: 2025-07-08T15:00:08-07:00
New Revision: 4647398d6a44d4596c6716875d8d92750f731f90

URL: https://github.com/llvm/llvm-project/commit/4647398d6a44d4596c6716875d8d92750f731f90
DIFF: https://github.com/llvm/llvm-project/commit/4647398d6a44d4596c6716875d8d92750f731f90.diff

LOG: [lldb] Fix a warning

This patch fixes:

  lldb/tools/lldb-dap/ProtocolUtils.cpp:77:22: error: implicit
  instantiation of undefined template 'std::basic_ostringstream<char>'

Added: 
    

Modified: 
    lldb/tools/lldb-dap/ProtocolUtils.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/tools/lldb-dap/ProtocolUtils.cpp b/lldb/tools/lldb-dap/ProtocolUtils.cpp
index d13968c98a387..f9e373db74618 100644
--- a/lldb/tools/lldb-dap/ProtocolUtils.cpp
+++ b/lldb/tools/lldb-dap/ProtocolUtils.cpp
@@ -19,6 +19,7 @@
 
 #include <iomanip>
 #include <optional>
+#include <sstream>
 
 using namespace lldb_dap::protocol;
 namespace lldb_dap {


        


More information about the lldb-commits mailing list