[Lldb-commits] [lldb] r252106 - One of the File constructors was missing initializers. Didn't seem

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 4 16:22:20 PST 2015


Author: jingham
Date: Wed Nov  4 18:22:19 2015
New Revision: 252106

URL: http://llvm.org/viewvc/llvm-project?rev=252106&view=rev
Log:
One of the File constructors was missing initializers.  Didn't seem
to cause any problems, but still...

Modified:
    lldb/trunk/include/lldb/Host/File.h

Modified: lldb/trunk/include/lldb/Host/File.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/File.h?rev=252106&r1=252105&r2=252106&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/File.h (original)
+++ lldb/trunk/include/lldb/Host/File.h Wed Nov  4 18:22:19 2015
@@ -125,7 +125,9 @@ public:
         m_descriptor (fd),
         m_stream (kInvalidStream),
         m_options (0),
-        m_own_stream (false)
+        m_own_stream (false),
+        m_is_interactive (eLazyBoolCalculate),
+        m_is_real_terminal (eLazyBoolCalculate)
     {
     }
 




More information about the lldb-commits mailing list