diff options
| author | Jim Ingham <jingham@apple.com> | 2015-11-05 00:22:19 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-11-05 00:22:19 +0000 |
| commit | a6bc55613eb9c411154435dd25f48bec793bdcb6 (patch) | |
| tree | 237cf14b8f7b1b06847a0fb3f17ca399eeb969cd /lldb | |
| parent | b23f57832afb61170f95b122d65218cf2bbbcfd1 (diff) | |
| download | bcm5719-llvm-a6bc55613eb9c411154435dd25f48bec793bdcb6.tar.gz bcm5719-llvm-a6bc55613eb9c411154435dd25f48bec793bdcb6.zip | |
One of the File constructors was missing initializers. Didn't seem
to cause any problems, but still...
llvm-svn: 252106
Diffstat (limited to 'lldb')
| -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) { } |

