mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #1041 from pirapira/typo_and_whitespace
Fix a typo and a whitespace inconsistency
This commit is contained in:
commit
ce11580988
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#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
|
#ifdef _M_IX86
|
||||||
#pragma warning(disable:4244)
|
#pragma warning(disable:4244)
|
||||||
#endif
|
#endif
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#ifdef __INTEL_COMPILER
|
#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
|
#endif
|
||||||
|
|
||||||
namespace dev
|
namespace dev
|
||||||
|
@ -108,7 +108,7 @@ private:
|
|||||||
/// @returns a string representing an expression that is a copy of this.storage
|
/// @returns a string representing an expression that is a copy of this.storage
|
||||||
std::string copyOfStorage() const;
|
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).
|
/// (which does its own indentation).
|
||||||
void visitIndentedUnlessBlock(Statement const& _statement);
|
void visitIndentedUnlessBlock(Statement const& _statement);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user