Skip to content

Commit

Permalink
Deprecation: 'l' suffix for float literals (deprecated -> error)
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed Oct 28, 2012
1 parent cd19560 commit e795f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexer.c
Expand Up @@ -2397,7 +2397,7 @@ __body
break;

case 'l':
deprecation("'l' suffix is deprecated, use 'L' instead");
error("'l' suffix is deprecated, use 'L' instead");
case 'L':
result = TOKfloat80v;
p++;
Expand Down

0 comments on commit e795f49

Please sign in to comment.