Skip to content

Commit

Permalink
Deprecation: 'I' suffix for imaginary literal (deprecation -> error)
Browse files Browse the repository at this point in the history
This has been deprecated since 0.154
  • Loading branch information
yebblies committed Oct 28, 2012
1 parent e795f49 commit 7c5c8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexer.c
Expand Up @@ -2406,7 +2406,7 @@ __body
if (*p == 'i' || *p == 'I')
{
if (*p == 'I')
deprecation("'I' suffix is deprecated, use 'i' instead");
error("'I' suffix is deprecated, use 'i' instead");
p++;
switch (result)
{
Expand Down

0 comments on commit 7c5c8eb

Please sign in to comment.