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 | 42f1d37e7502af8027ef4a2acc8de95301f1a785 (patch) | |
| tree | 0a7f3cbf298478444aa1e38995a487625452c734 | |
| parent | f200f7b11a71fd85cf9c84b630e61ca028b87b60 (diff) | |
| download | bcm5719-llvm-42f1d37e7502af8027ef4a2acc8de95301f1a785.tar.gz bcm5719-llvm-42f1d37e7502af8027ef4a2acc8de95301f1a785.zip | |
Be more namespace correct
llvm-svn: 3086
| -rw-r--r-- | llvm/tools/analyze/analyze.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/analyze/analyze.cpp b/llvm/tools/analyze/analyze.cpp index 8eb15fd5d40..7373741e215 100644 --- a/llvm/tools/analyze/analyze.cpp +++ b/llvm/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")); |

