diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-14 22:04:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-14 22:04:41 +0000 |
commit | e58e442e20bda0660e74793c8aa160a0a11fa9e9 (patch) | |
tree | 081200f48cd2f24c2908544fc10ef791161d72a0 /llvm/include/Support/CommandLine.h | |
parent | ca782d9fe678b14eb0dfabb5f5cbd6efe6e3d998 (diff) | |
download | bcm5719-llvm-e58e442e20bda0660e74793c8aa160a0a11fa9e9.tar.gz bcm5719-llvm-e58e442e20bda0660e74793c8aa160a0a11fa9e9.zip |
Remove extraneous cl:: namespace qualifiers
llvm-svn: 7852
Diffstat (limited to 'llvm/include/Support/CommandLine.h')
-rw-r--r-- | llvm/include/Support/CommandLine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/Support/CommandLine.h b/llvm/include/Support/CommandLine.h index faf82062cc6..5febbcf1c9b 100644 --- a/llvm/include/Support/CommandLine.h +++ b/llvm/include/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 |