Remove trailing whitespace.

This commit is contained in:
chriseth 2018-11-12 09:13:14 +01:00
parent 405565db62
commit af65bac737
4 changed files with 5 additions and 5 deletions

View File

@ -84,8 +84,8 @@ internally.
.. note ::
Those working in a Windows environment wanting to run the above basic sets without aleth or libz3 in Git Bash, you would have to do: ``./build/test/RelWithDebInfo/soltest.exe -- --no-ipc --no-smt``.
If you're running this in plain Command Prompt, use ``.\build\test\RelWithDebInfo\soltest.exe -- --no-ipc --no-smt``.
Those working in a Windows environment wanting to run the above basic sets without aleth or libz3 in Git Bash, you would have to do: ``./build/test/RelWithDebInfo/soltest.exe -- --no-ipc --no-smt``.
If you're running this in plain Command Prompt, use ``.\build\test\RelWithDebInfo\soltest.exe -- --no-ipc --no-smt``.
The option ``--no-smt`` disables the tests that require ``libz3`` and
``--no-ipc`` disables those that require ``aleth``.

View File

@ -1556,7 +1556,7 @@ ASTPointer<Expression> Parser::parsePrimaryExpression()
}
case Token::IllegalHex:
fatalParserError("Expected even number of hex-nibbles within double-quotes.");
break;
break;
default:
if (TokenTraits::isElementaryTypeName(token))
{

View File

@ -1,6 +1,6 @@
{
function f() -> a, b, c {}
let x, y, z
let x, y, z
z, x, y := f()
}
// ----

View File

@ -1,5 +1,5 @@
{
let f
let f
f := mload(0)
}
// ----