Browse Source

fixing typo and alignment

cl-refactor
Lefteris Karapetsas 10 years ago
parent
commit
0788e326ce
  1. 2
      libsolidity/Scanner.h
  2. 2
      libsolidity/Token.h

2
libsolidity/Scanner.h

@ -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
libsolidity/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…
Cancel
Save