diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-25 16:31:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 16:31:01 +0000 |
commit | 98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4 (patch) | |
tree | f6343cc3cd793d947b3fbcd45ab5021085a93351 /tools/analyze | |
parent | 4b367217c29bb591df21baa4800b0d1d6f734e94 (diff) | |
download | external_llvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.zip external_llvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.tar.gz external_llvm-98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4.tar.bz2 |
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/analyze')
-rw-r--r-- | tools/analyze/analyze.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index 8eb15fd..7373741 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")); |