1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Binary constants contributed by Thomas Holland. Bug 249698.

This commit is contained in:
Sergey Prigogin 2008-10-06 05:40:07 +00:00
parent 89f966e3ef
commit af37b8985c
2 changed files with 3 additions and 0 deletions

View file

@ -131,6 +131,8 @@ public class ASTProblem extends ASTNode implements IASTProblem {
ParserMessages.getString("ScannerProblemFactory.error.scanner.unboundedString")); //$NON-NLS-1$
errorMessages.put(new Integer(SCANNER_BAD_FLOATING_POINT),
ParserMessages.getString("ScannerProblemFactory.error.scanner.badFloatingPoint")); //$NON-NLS-1$
errorMessages.put(new Integer(SCANNER_BAD_BINARY_FORMAT),
ParserMessages.getString("ScannerProblemFactory.error.scanner.badBinaryFormat")); //$NON-NLS-1$
errorMessages.put(new Integer(SCANNER_BAD_HEX_FORMAT),
ParserMessages.getString("ScannerProblemFactory.error.scanner.badHexFormat")); //$NON-NLS-1$
errorMessages.put(new Integer(SCANNER_BAD_OCTAL_FORMAT),

View file

@ -41,6 +41,7 @@ ScannerProblemFactory.error.preproc.invalidVaArgs=__VA_ARGS__ can only appear in
ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered
ScannerProblemFactory.error.scanner.unboundedString=Unbounded string encountered
ScannerProblemFactory.error.scanner.badFloatingPoint=Invalid floating point format encountered
ScannerProblemFactory.error.scanner.badBinaryFormat=Invalid binary format encountered
ScannerProblemFactory.error.scanner.badHexFormat=Invalid hexadecimal format encountered
ScannerProblemFactory.error.scanner.badOctalFormat=Invalid octal format encountered
ScannerProblemFactory.error.scanner.badDecimalFormat=Invalid decimal format encountered