[Lldb-commits] [lldb] r217634 - Add missing constructor definition.
Zachary Turner
zturner at google.com
Thu Sep 11 15:42:58 PDT 2014
Author: zturner
Date: Thu Sep 11 17:42:58 2014
New Revision: 217634
URL: http://llvm.org/viewvc/llvm-project?rev=217634&view=rev
Log:
Add missing constructor definition.
Modified:
lldb/trunk/source/Host/posix/HostProcessPosix.cpp
Modified: lldb/trunk/source/Host/posix/HostProcessPosix.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/posix/HostProcessPosix.cpp?rev=217634&r1=217633&r2=217634&view=diff
==============================================================================
--- lldb/trunk/source/Host/posix/HostProcessPosix.cpp (original)
+++ lldb/trunk/source/Host/posix/HostProcessPosix.cpp Thu Sep 11 17:42:58 2014
@@ -26,6 +26,11 @@ HostProcessPosix::HostProcessPosix()
{
}
+HostProcessPosix::HostProcessPosix(lldb::process_t process)
+ : HostNativeProcessBase(process)
+{
+}
+
HostProcessPosix::~HostProcessPosix()
{
}
More information about the lldb-commits
mailing list