[llvm-commits] CVS: llvm/include/Support/CommandLine.h
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 14 17:05:01 PDT 2003
Changes in directory llvm/include/Support:
CommandLine.h updated: 1.21 -> 1.22
---
Log message:
Remove extraneous cl:: namespace qualifiers
---
Diffs of the changes:
Index: llvm/include/Support/CommandLine.h
diff -u llvm/include/Support/CommandLine.h:1.21 llvm/include/Support/CommandLine.h:1.22
--- llvm/include/Support/CommandLine.h:1.21 Thu Aug 14 17:00:59 2003
+++ llvm/include/Support/CommandLine.h Thu Aug 14 17:04:41 2003
@@ -28,15 +28,15 @@
//===----------------------------------------------------------------------===//
// 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
More information about the llvm-commits
mailing list