From 5245f853c54e422b3004d5f80d2aaaebbceb8468 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 20 May 2002 17:38:26 +0000 Subject: [PATCH] Don't lose namespace qualifications on previous patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2664 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAlloc/PhyRegAlloc.h | 4 ++-- lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 29f872fe09c..5df4381e3ee 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - vector InstrnsBefore;// Added insts BEFORE an existing inst - vector InstrnsAfter; // Added insts AFTER an existing inst + std::vector InstrnsBefore;// Added insts BEFORE an existing inst + std::vector InstrnsAfter; // Added insts AFTER an existing inst }; typedef std::map AddedInstrMapType; diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 29f872fe09c..5df4381e3ee 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - vector InstrnsBefore;// Added insts BEFORE an existing inst - vector InstrnsAfter; // Added insts AFTER an existing inst + std::vector InstrnsBefore;// Added insts BEFORE an existing inst + std::vector InstrnsAfter; // Added insts AFTER an existing inst }; typedef std::map AddedInstrMapType;