diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-03 21:01:15 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 17:30:30 +0800 |
commit | a102f3b783dec236e9a733f5a5338efce3ef8319 (patch) | |
tree | b4e6793dce0005920b5ba1ce46d538883057be8d /libsolidity/parsing/Token.cpp | |
parent | 2783905babfbe2fd01ff5f7b2a2499bd13754f10 (diff) | |
download | dexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.tar.gz dexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.tar.zst dexon-solidity-a102f3b783dec236e9a733f5a5338efce3ef8319.zip |
Remove trailing whitespace for all files in the repository.
Diffstat (limited to 'libsolidity/parsing/Token.cpp')
-rw-r--r-- | libsolidity/parsing/Token.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/parsing/Token.cpp b/libsolidity/parsing/Token.cpp index 5ce74316..27acb7d4 100644 --- a/libsolidity/parsing/Token.cpp +++ b/libsolidity/parsing/Token.cpp @@ -63,7 +63,7 @@ void ElementaryTypeNameToken::assertDetails(Token::Value _baseType, unsigned con { solAssert(_second == 0, "There should not be a second size argument to type " + string(Token::toString(_baseType)) + "."); solAssert( - _first <= 256 && _first % 8 == 0, + _first <= 256 && _first % 8 == 0, "No elementary type " + string(Token::toString(_baseType)) + to_string(_first) + "." ); } @@ -165,7 +165,7 @@ tuple<Token::Value, unsigned int, unsigned int> Token::fromIdentifierOrKeyword(s else return make_tuple(Token::FixedMxN, m, n); } - } + } } return make_tuple(Token::Identifier, 0, 0); } |