summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 16:31:01 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 16:31:01 +0000
commit98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4 (patch)
treef6343cc3cd793d947b3fbcd45ab5021085a93351 /tools
parent4b367217c29bb591df21baa4800b0d1d6f734e94 (diff)
downloadllvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.tar.gz
llvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.tar.bz2
llvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.tar.xz
Be more namespace correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/analyze/analyze.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 8eb15fd5d4..7373741e21 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -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"));