diff options
| author | Zachary Turner <zturner@google.com> | 2014-09-11 22:42:58 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-09-11 22:42:58 +0000 |
| commit | d40077839be53969a9ff790bd78b16894c85ba48 (patch) | |
| tree | 1564348e3c7360f9b71299c0e50d8280c505c0a7 | |
| parent | 5c69ff5cf5c9dc6a4517e37e0613b684164bcfba (diff) | |
| download | bcm5719-llvm-d40077839be53969a9ff790bd78b16894c85ba48.tar.gz bcm5719-llvm-d40077839be53969a9ff790bd78b16894c85ba48.zip | |
Add missing constructor definition.
llvm-svn: 217634
| -rw-r--r-- | lldb/source/Host/posix/HostProcessPosix.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Host/posix/HostProcessPosix.cpp b/lldb/source/Host/posix/HostProcessPosix.cpp index 1f909e55820..13de84170ff 100644 --- a/lldb/source/Host/posix/HostProcessPosix.cpp +++ b/lldb/source/Host/posix/HostProcessPosix.cpp @@ -26,6 +26,11 @@ HostProcessPosix::HostProcessPosix() { } +HostProcessPosix::HostProcessPosix(lldb::process_t process) + : HostNativeProcessBase(process) +{ +} + HostProcessPosix::~HostProcessPosix() { } |

