diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-22 21:59:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-22 21:59:35 +0000 |
commit | 01e770a9e556c2b509cbcec83b000bbe9b98053f (patch) | |
tree | de9d318aea4fc764114f0f90308533f4f130bf68 /lib/Support | |
parent | 6b77ec415662b92ea49e614ee568be556ea27899 (diff) | |
download | external_llvm-01e770a9e556c2b509cbcec83b000bbe9b98053f.zip external_llvm-01e770a9e556c2b509cbcec83b000bbe9b98053f.tar.gz external_llvm-01e770a9e556c2b509cbcec83b000bbe9b98053f.tar.bz2 |
Add using declarations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6305 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Annotation.cpp | 16 | ||||
-rw-r--r-- | lib/Support/Signals.cpp | 5 |
2 files changed, 8 insertions, 13 deletions
diff --git a/lib/Support/Annotation.cpp b/lib/Support/Annotation.cpp index 9f24607..9166240 100644 --- a/lib/Support/Annotation.cpp +++ b/lib/Support/Annotation.cpp @@ -6,12 +6,8 @@ #include <map> #include "Support/Annotation.h" -using std::string; -using std::map; -using std::pair; -using std::make_pair; -typedef map<const string, unsigned> IDMapType; +typedef std::map<const std::string, unsigned> IDMapType; static unsigned IDCounter = 0; // Unique ID counter // Static member to ensure initialiation on demand. @@ -19,7 +15,7 @@ static IDMapType &getIDMap() { static IDMapType TheMap; return TheMap; } // On demand annotation creation support... typedef Annotation *(*AnnFactory)(AnnotationID, const Annotable *, void *); -typedef map<unsigned, pair<AnnFactory,void*> > FactMapType; +typedef std::map<unsigned, std::pair<AnnFactory,void*> > FactMapType; static FactMapType *TheFactMap = 0; static FactMapType &getFactMap() { @@ -38,7 +34,7 @@ static void eraseFromFactMap(unsigned ID) { } -AnnotationID AnnotationManager::getID(const string &Name) { // Name -> ID +AnnotationID AnnotationManager::getID(const std::string &Name) { // Name -> ID IDMapType::iterator I = getIDMap().find(Name); if (I == getIDMap().end()) { getIDMap()[Name] = IDCounter++; // Add a new element @@ -49,7 +45,7 @@ AnnotationID AnnotationManager::getID(const string &Name) { // Name -> ID // getID - Name -> ID + registration of a factory function for demand driven // annotation support. -AnnotationID AnnotationManager::getID(const string &Name, Factory Fact, +AnnotationID AnnotationManager::getID(const std::string &Name, Factory Fact, void *Data) { AnnotationID Result(getID(Name)); registerAnnotationFactory(Result, Fact, Data); @@ -60,7 +56,7 @@ AnnotationID AnnotationManager::getID(const string &Name, Factory Fact, // getName - This function is especially slow, but that's okay because it should // only be used for debugging. // -const string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name +const std::string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name IDMapType &TheMap = getIDMap(); for (IDMapType::iterator I = TheMap.begin(); ; ++I) { assert(I != TheMap.end() && "Annotation ID is unknown!"); @@ -77,7 +73,7 @@ void AnnotationManager::registerAnnotationFactory(AnnotationID ID, AnnFactory F, void *ExtraData) { if (F) - getFactMap()[ID.ID] = make_pair(F, ExtraData); + getFactMap()[ID.ID] = std::make_pair(F, ExtraData); else eraseFromFactMap(ID.ID); } diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp index 3b34683..38fb9dd 100644 --- a/lib/Support/Signals.cpp +++ b/lib/Support/Signals.cpp @@ -11,9 +11,8 @@ #include <cstdlib> #include <cstdio> #include <signal.h> -using std::string; -static std::vector<string> FilesToRemove; +static std::vector<std::string> FilesToRemove; // IntSigs - Signals that may interrupt the program at any time. static const int IntSigs[] = { @@ -48,7 +47,7 @@ static void SignalHandler(int Sig) { static void RegisterHandler(int Signal) { signal(Signal, SignalHandler); } // RemoveFileOnSignal - The public API -void RemoveFileOnSignal(const string &Filename) { +void RemoveFileOnSignal(const std::string &Filename) { FilesToRemove.push_back(Filename); std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |