Be more namespace correct
authorChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:31:01 +0000 (16:31 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:31:01 +0000 (16:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3086 91177308-0d34-0410-b5e6-96231b3b80d8

tools/analyze/analyze.cpp

index 8eb15fd5d40e3d32538e0b03b0245270f56e187e..7373741e2159679ac619a6fd58b902022c5f25b6 100644 (file)
@@ -34,7 +34,6 @@
 #include <algorithm>
 
 using std::ostream;
-using std::string;
 
 //===----------------------------------------------------------------------===//
 // printPass - Specify how to print out a pass.  For most passes, the standard
@@ -233,7 +232,7 @@ enum Ans {
   postdomset, postidom, postdomtree, postdomfrontier,
 };
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"),
               cl::value_desc("filename"));