mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix a typo and whitespaces
This commit is contained in:
parent
940c5a8612
commit
c9b23d9829
@ -23,7 +23,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
// way to many unsigned to size_t warnings in 32 bit build
|
||||
// way too many unsigned to size_t warnings in 32 bit build
|
||||
#ifdef _M_IX86
|
||||
#pragma warning(disable:4244)
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <string>
|
||||
|
||||
#ifdef __INTEL_COMPILER
|
||||
#pragma warning(disable:597) //will not be called for implicit or explicit conversions
|
||||
#pragma warning(disable:597) // will not be called for implicit or explicit conversions
|
||||
#endif
|
||||
|
||||
namespace dev
|
||||
|
@ -683,7 +683,7 @@ bool Why3Translator::visit(Literal const& _literal)
|
||||
else
|
||||
add("(of_int " + toString(type->literalValue(&_literal)) + ")");
|
||||
break;
|
||||
}
|
||||
}
|
||||
default:
|
||||
error(_literal, "Not supported.");
|
||||
}
|
||||
|
@ -108,7 +108,7 @@ private:
|
||||
/// @returns a string representing an expression that is a copy of this.storage
|
||||
std::string copyOfStorage() const;
|
||||
|
||||
/// Visits the givin statement and indents it unless it is a block
|
||||
/// Visits the given statement and indents it unless it is a block
|
||||
/// (which does its own indentation).
|
||||
void visitIndentedUnlessBlock(Statement const& _statement);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user