diff options
author | Virgile Bello <virgile.bello@gmail.com> | 2013-08-27 16:22:29 +0000 |
---|---|---|
committer | Virgile Bello <virgile.bello@gmail.com> | 2013-08-27 16:22:29 +0000 |
commit | 84400ec7bcf6b38057c1cca0b775d1ecece3830f (patch) | |
tree | cdbc19f9c100bf9e888ce565a146765cdab2084f /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | ae12a3640d3c706ab84c217fd9e81cc5751d5f35 (diff) | |
download | llvm-84400ec7bcf6b38057c1cca0b775d1ecece3830f.zip llvm-84400ec7bcf6b38057c1cca0b775d1ecece3830f.tar.gz llvm-84400ec7bcf6b38057c1cca0b775d1ecece3830f.tar.bz2 |
Remove need of <functional> for CommandObjectCommands.
llvm-svn: 189365
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 4699aa6..9887f23 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -156,9 +156,9 @@ protected: } else { - std::pair<bool,uint64_t> start_idx = {m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.GetCurrentValue()}; - std::pair<bool,uint64_t> stop_idx = {m_options.m_stop_idx.OptionWasSet(),m_options.m_stop_idx.GetCurrentValue()}; - std::pair<bool,uint64_t> count = {m_options.m_count.OptionWasSet(),m_options.m_count.GetCurrentValue()}; + std::pair<bool,uint64_t> start_idx(m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.GetCurrentValue()); + std::pair<bool,uint64_t> stop_idx(m_options.m_stop_idx.OptionWasSet(),m_options.m_stop_idx.GetCurrentValue()); + std::pair<bool,uint64_t> count(m_options.m_count.OptionWasSet(),m_options.m_count.GetCurrentValue()); const CommandHistory& history(m_interpreter.GetCommandHistory()); |