mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fixing typo and alignment
This commit is contained in:
parent
3174f5eca3
commit
4e6d3a38cd
@ -179,7 +179,7 @@ private:
|
|||||||
|
|
||||||
bool scanHexByte(char& o_scannedByte);
|
bool scanHexByte(char& o_scannedByte);
|
||||||
|
|
||||||
/// Scans a single JavaScript token.
|
/// Scans a single Solidity token.
|
||||||
void scanToken(bool _skipDocumentationComments = true);
|
void scanToken(bool _skipDocumentationComments = true);
|
||||||
|
|
||||||
/// Skips all whitespace and @returns true if something was skipped.
|
/// Skips all whitespace and @returns true if something was skipped.
|
||||||
|
2
Token.h
2
Token.h
@ -281,7 +281,7 @@ namespace solidity
|
|||||||
K(FALSE_LITERAL, "false", 0) \
|
K(FALSE_LITERAL, "false", 0) \
|
||||||
T(NUMBER, NULL, 0) \
|
T(NUMBER, NULL, 0) \
|
||||||
T(STRING_LITERAL, NULL, 0) \
|
T(STRING_LITERAL, NULL, 0) \
|
||||||
T(COMMENT_LITERAL, NULL, 0) \
|
T(COMMENT_LITERAL, NULL, 0) \
|
||||||
\
|
\
|
||||||
/* Identifiers (not keywords or future reserved words). */ \
|
/* Identifiers (not keywords or future reserved words). */ \
|
||||||
T(IDENTIFIER, NULL, 0) \
|
T(IDENTIFIER, NULL, 0) \
|
||||||
|
Loading…
Reference in New Issue
Block a user