diff options
| author | Greg Clayton <gclayton@apple.com> | 2013-04-18 23:25:55 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2013-04-18 23:25:55 +0000 |
| commit | febe8e33d7a26122094a8418c1c3f4654a4a732b (patch) | |
| tree | 8835b1a9c0eef3013470c1048fefef78695b7cdd /lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | |
| parent | 99bce5fe086e43e320deff3475956db220ecbb00 (diff) | |
| download | bcm5719-llvm-febe8e33d7a26122094a8418c1c3f4654a4a732b.tar.gz bcm5719-llvm-febe8e33d7a26122094a8418c1c3f4654a4a732b.zip | |
More fallout unique_ptr changes for from http://lab.llvm.org:8011/builders/lldb-x86_64-linux/builds/3565.
llvm-svn: 179815
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/POSIXThread.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index a041082e28f..94ee8cbdc2c 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp @@ -37,7 +37,7 @@ using namespace lldb_private; POSIXThread::POSIXThread(Process &process, lldb::tid_t tid) : Thread(process, tid), - m_frame_ap(0) + m_frame_ap() { Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_THREAD)); if (log && log->GetMask().Test(POSIX_LOG_VERBOSE)) |

