diff options
| author | Omair Javaid <omair.javaid@linaro.org> | 2015-04-19 21:36:06 +0000 |
|---|---|---|
| committer | Omair Javaid <omair.javaid@linaro.org> | 2015-04-19 21:36:06 +0000 |
| commit | 652e384a7af93a471817a3c4ad0c9c0d515e13f0 (patch) | |
| tree | 84e650ee2d34df007c19a9d36ad1b982bdc331bc | |
| parent | 4c107b5258c84d3313c1f582d7b6462a07a03d96 (diff) | |
| download | bcm5719-llvm-652e384a7af93a471817a3c4ad0c9c0d515e13f0.tar.gz bcm5719-llvm-652e384a7af93a471817a3c4ad0c9c0d515e13f0.zip | |
Fix LLDB ARM GCC4.7 broken build
llvm-svn: 235280
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index eefbcdcf214..e027939975e 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -3956,7 +3956,7 @@ NativeProcessLinux::SingleStep(lldb::tid_t tid, uint32_t signo) if (error.Fail()) return error; - m_threads_stepping_with_breakpoint.emplace(tid, next_pc); + m_threads_stepping_with_breakpoint.insert({tid, next_pc}); error = Resume(tid, signo); if (error.Fail()) |

