Adding std namespace to a couple of make_pair instances.
authorTim King <taking@cs.nyu.edu>
Fri, 6 Jul 2012 17:47:49 +0000 (17:47 +0000)
committerTim King <taking@cs.nyu.edu>
Fri, 6 Jul 2012 17:47:49 +0000 (17:47 +0000)
src/theory/inst_match_impl.h

index f48cdff2cea6998c661122130e418d5144569723..b38bcb6f524676e0cce84f4fda9dfa0c1fb3db7f 100644 (file)
@@ -43,7 +43,7 @@ void InstMatchTrie2<modEq>::addSubTree( Tree * root, mapIter current, mapIter en
 
   Assert(root->e.find(current->second) == root->e.end());
   Tree * root2 = new Tree(currLevel);
-  root->e.insert(make_pair(current->second, root2));
+  root->e.insert(std::make_pair(current->second, root2));
   addSubTree(root2, ++current, end, currLevel );
 }
 
@@ -111,7 +111,7 @@ bool InstMatchTrie2<modEq>::addInstMatch( InstMatch& m ) {
    addSubTree( e, diverge, end, currLevel );
    if(e->level != currLevel)
      //If same level that e, will be removed at the same time than e
-     d_mods.push_back(make_pair(e,diverge->second));
+     d_mods.push_back(std::make_pair(e,diverge->second));
    return true;
  }else{
    return false;