GCC 3.1 changes
[oota-llvm.git] / lib / AsmParser / Lexer.l
index faddcb16d51d3801e1d1fc9acbf5a832bf69a1b8..b8373250a74d0ebff166e4717e0a5113e75d6fc3 100644 (file)
@@ -85,7 +85,7 @@ static double HexToFP(const char *Buffer) {
 // If AllowNull is set to true, the return value of the function points to the
 // last character of the string in memory.
 //
-char *UnEscapeLexed(char *Buffer, bool AllowNull = false) {
+char *UnEscapeLexed(char *Buffer, bool AllowNull) {
   char *BOut = Buffer;
   for (char *BIn = Buffer; *BIn; ) {
     if (BIn[0] == '\\' && isxdigit(BIn[1]) && isxdigit(BIn[2])) {