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 | 20968a247246a0ef71f340f0a5f74405fc91a727 (patch) | |
tree | e5ab826f9310914cbc4f8bc42ff8ba61ce64ce3d /include/Support/CommandLine.h | |
parent | 06b06c5f00acffdab8c59e3dc5baca3eacca172a (diff) |
Remove extraneous cl:: namespace qualifiers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/CommandLine.h')
-rw-r--r-- | include/Support/CommandLine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h index faf82062cc..5febbcf1c9 100644 --- a/include/Support/CommandLine.h +++ b/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 |