diff options
-rw-r--r-- | lldb/include/lldb/Host/File.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/include/lldb/Host/File.h b/lldb/include/lldb/Host/File.h index e6e64dc1742..27f3f405ffd 100644 --- a/lldb/include/lldb/Host/File.h +++ b/lldb/include/lldb/Host/File.h @@ -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) { } |