aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-11-23 23:30:51 +0800
committerchriseth <c@ethdev.com>2015-11-23 23:30:51 +0800
commit10fe0a2434519e9be0b556c3566d8a7b17700750 (patch)
treee64280dea415495cbce4e0f4ff394836d1391f57 /libsolidity
parent806507d5c0a12c64771d2611487cb100f88fe4ff (diff)
downloaddexon-solidity-10fe0a2434519e9be0b556c3566d8a7b17700750.tar.gz
dexon-solidity-10fe0a2434519e9be0b556c3566d8a7b17700750.tar.zst
dexon-solidity-10fe0a2434519e9be0b556c3566d8a7b17700750.zip
Style.
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/formal/Why3Translator.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/libsolidity/formal/Why3Translator.cpp b/libsolidity/formal/Why3Translator.cpp
index cd036662..356a336c 100644
--- a/libsolidity/formal/Why3Translator.cpp
+++ b/libsolidity/formal/Why3Translator.cpp
@@ -650,7 +650,6 @@ string Why3Translator::transformVariableReferences(string const& _annotation)
auto pos = _annotation.begin();
while (true)
{
-
auto hash = find(pos, _annotation.end(), '#');
ret.append(pos, hash);
if (hash == _annotation.end())
@@ -658,7 +657,11 @@ string Why3Translator::transformVariableReferences(string const& _annotation)
auto hashEnd = find_if(hash + 1, _annotation.end(), [](char _c)
{
- return _c != '_' && _c != '$' && !('a' <= _c && _c <= 'z') && !('A' <= _c && _c <= 'Z') && !('0' <= _c && _c <= '9');
+ return
+ (_c != '_' && _c != '$') &&
+ !('a' <= _c && _c <= 'z') &&
+ !('A' <= _c && _c <= 'Z') &&
+ !('0' <= _c && _c <= '9');
});
string varName(hash + 1, hashEnd);
if (isLocalVariable(varName))