From db14500d889663ef699fc4ddd3ad1d48ace82285 Mon Sep 17 00:00:00 2001 From: Chris Lattner <sabre@nondot.org> Date: Thu, 25 Jul 2002 16:39:56 +0000 Subject: [PATCH] Namespace correctness is good git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3088 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lli/lli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index e3f585439bc..76e1eb19771 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -10,13 +10,13 @@ #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"));