*** empty log message ***
[oota-llvm.git] / support / lib / Support / CommandLine.cpp
index 433cefda7bf7f37617db8c15fccb54e78f203924..e125ebeb82206966e64e770f4a0e6cc752e23008 100644 (file)
@@ -138,7 +138,7 @@ static bool EatsUnboundedNumberOfValues(const Option *O) {
 }
 
 void cl::ParseCommandLineOptions(int &argc, char **argv,
-                                 const char *Overview = 0) {
+                                 const char *Overview) {
   assert((!getOpts().empty() || !getPositionalOpts().empty()) &&
          "No options specified, or ParseCommandLineOptions called more"
          " than once!");
@@ -396,7 +396,7 @@ void cl::ParseCommandLineOptions(int &argc, char **argv,
 // Option Base class implementation
 //
 
-bool Option::error(string Message, const char *ArgName = 0) {
+bool Option::error(string Message, const char *ArgName) {
   if (ArgName == 0) ArgName = ArgStr;
   if (ArgName[0] == 0)
     cerr << HelpStr;  // Be nice for positional arguments