diff options
author | Greg Clayton <gclayton@apple.com> | 2015-12-15 23:03:22 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-12-15 23:03:22 +0000 |
commit | 0817da881e2ece842df2768a51c8aa5329d4c55e (patch) | |
tree | 973f5af3839c173d903e6500209c9f23a363b688 /lldb/source/API/SBStream.cpp | |
parent | 935f31cbc0de546f52ac37685492730c66138bae (diff) | |
download | bcm5719-llvm-0817da881e2ece842df2768a51c8aa5329d4c55e.tar.gz bcm5719-llvm-0817da881e2ece842df2768a51c8aa5329d4c55e.zip |
First pass at LLDBRPC.framework
llvm-svn: 255697
Diffstat (limited to 'lldb/source/API/SBStream.cpp')
-rw-r--r-- | lldb/source/API/SBStream.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/API/SBStream.cpp b/lldb/source/API/SBStream.cpp index f50334f7418..f3be3be6a10 100644 --- a/lldb/source/API/SBStream.cpp +++ b/lldb/source/API/SBStream.cpp @@ -23,6 +23,13 @@ SBStream::SBStream () : { } +SBStream::SBStream (SBStream &&rhs) : + m_opaque_ap (std::move(rhs.m_opaque_ap)), + m_is_file (rhs.m_is_file) +{ +} + + SBStream::~SBStream () { } |