Remove _Pairib usage
This commit is contained in:
parent
92c06c1651
commit
4390a0926c
|
@ -54,11 +54,7 @@ bool CBreakpoints::WBPAdd(uint32_t address)
|
|||
bool CBreakpoints::AddExecution(uint32_t address, bool bTemporary)
|
||||
{
|
||||
PreUpdateBP();
|
||||
#if _MSC_VER >= 1920 // Visual Studio 2019 deprecates _Pairib
|
||||
auto res = m_Execution.insert(breakpoint_t::value_type(address, bTemporary));
|
||||
#else
|
||||
breakpoints_t::_Pairib res = m_Execution.insert(breakpoint_t::value_type(address, bTemporary));
|
||||
#endif // _MSC_VER
|
||||
std::pair<breakpoints_t::iterator, bool> res = m_Execution.insert(breakpoint_t::value_type(address, bTemporary));
|
||||
|
||||
if (!res.second && !bTemporary)
|
||||
{
|
||||
|
|
|
@ -245,13 +245,13 @@ int main (int argc, char *argv[])
|
|||
items.push_back(Section);
|
||||
if (PDNames.find(GoodName) == PDNames.end())
|
||||
{
|
||||
strmap::_Pairib res = GoodNameSections.insert(strmap::value_type(GoodName,items));
|
||||
std::pair<strmap::iterator, bool> res = GoodNameSections.insert(strmap::value_type(GoodName,items));
|
||||
if (!res.second)
|
||||
{
|
||||
res.first->second.push_back(Section);
|
||||
}
|
||||
} else {
|
||||
strmap::_Pairib res = PDNameSections.insert(strmap::value_type(GoodName,items));
|
||||
std::pair<strmap::iterator, bool> res = PDNameSections.insert(strmap::value_type(GoodName,items));
|
||||
if (!res.second)
|
||||
{
|
||||
res.first->second.push_back(Section);
|
||||
|
|
Loading…
Reference in New Issue