diff options
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index faf82062cc..5febbcf1c9 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -28,15 +28,15 @@ namespace cl { //===----------------------------------------------------------------------===// // ParseCommandLineOptions - Command line option processing entry point. // -void cl::ParseCommandLineOptions(int &argc, char **argv, - const char *Overview = 0); +void ParseCommandLineOptions(int &argc, char **argv, + const char *Overview = 0); //===----------------------------------------------------------------------===// // ParseEnvironmentOptions - Environment variable option processing alternate // entry point. // -void cl::ParseEnvironmentOptions (char *progName, char *envvar, - const char *Overview = 0); +void ParseEnvironmentOptions(char *progName, char *envvar, + const char *Overview = 0); //===----------------------------------------------------------------------===// // Flags permitted to be passed to command line arguments |