Merge pull request #1041 from pirapira/typo_and_whitespace

Fix a typo and a whitespace inconsistency
This commit is contained in:
chriseth 2016-09-07 20:05:30 +02:00 committed by GitHub
commit ce11580988
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -683,7 +683,7 @@ bool Why3Translator::visit(Literal const& _literal)
else
add("(of_int " + toString(type->literalValue(&_literal)) + ")");
break;
}
}
default:
error(_literal, "Not supported.");
}

View File

@ -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);