Namespace correctness is good
authorChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:39:56 +0000 (16:39 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:39:56 +0000 (16:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3088 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/lli.cpp

index e3f585439bc3bd0176495bd5bc612942c4772b11..76e1eb19771bce652634f8dbe0a6193f9f3f765d 100644 (file)
 #include "Interpreter.h"
 #include "Support/CommandLine.h"
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));
 
 static cl::list<std::string>
 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
 
-static cl::opt<string>
+static cl::opt<std::string>
 MainFunction ("f", cl::desc("Function to execute"), cl::init("main"),
               cl::value_desc("function name"));