diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 23:28:52 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 23:43:04 +0800 |
commit | 1ae6ec9038d83a82d5e8b57a8c6138dd4970d422 (patch) | |
tree | 83537bfc4a10be6fa4fc74d59367439c4cb0f3f8 | |
parent | 1cd96b2dc482ed484e87de7c26a4af54aca45e1d (diff) | |
download | dexon-solidity-1ae6ec9038d83a82d5e8b57a8c6138dd4970d422.tar.gz dexon-solidity-1ae6ec9038d83a82d5e8b57a8c6138dd4970d422.tar.zst dexon-solidity-1ae6ec9038d83a82d5e8b57a8c6138dd4970d422.zip |
Remove trailing whitespace.
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 | ||||
-rwxr-xr-x | scripts/detect_trailing_whitespace.sh | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 3e8b7337..a13b3e6c 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -1827,7 +1827,7 @@ void ExpressionCompiler::appendExternalFunctionCall( auto funKind = _functionType.kind(); solAssert(funKind != FunctionType::Kind::BareStaticCall || m_context.evmVersion().hasStaticCall(), ""); - + bool returnSuccessConditionAndReturndata = funKind == FunctionType::Kind::BareCall || funKind == FunctionType::Kind::BareCallCode || funKind == FunctionType::Kind::BareDelegateCall || funKind == FunctionType::Kind::BareStaticCall; bool isCallCode = funKind == FunctionType::Kind::BareCallCode; bool isDelegateCall = funKind == FunctionType::Kind::BareDelegateCall || funKind == FunctionType::Kind::DelegateCall; diff --git a/scripts/detect_trailing_whitespace.sh b/scripts/detect_trailing_whitespace.sh index 78e69584..1a136a10 100755 --- a/scripts/detect_trailing_whitespace.sh +++ b/scripts/detect_trailing_whitespace.sh @@ -9,9 +9,7 @@ WHITESPACE=$(git grep -n -I -E "^.*[[:space:]]+$" | grep -v "test/libsolidity/AS if [[ "$WHITESPACE" != "" ]] then echo "Error: Trailing whitespace found:" >&2 - echo "\"$WHITESPACE\"" >&2 + echo "$WHITESPACE" >&2 exit 1 -else - exit 0 fi ) |