Some more tests and typos fixed.

This commit is contained in:
chriseth
2015-10-13 12:22:57 +02:00
parent deebc7e860
commit 13d7bc4ee8
4 changed files with 31 additions and 3 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ struct UserDefinedTypeNameAnnotation: TypeNameAnnotation
struct VariableDeclarationStatementAnnotation: ASTAnnotation
{
/// Information about which component of the vaule is assigned to which variable.
/// Information about which component of the value is assigned to which variable.
/// The pointer can be null to signify that the component is discarded.
std::vector<VariableDeclaration const*> assignments;
};
+3 -2
View File
@@ -1244,8 +1244,9 @@ string TupleType::toString(bool _short) const
u256 TupleType::storageSize() const
{
BOOST_THROW_EXCEPTION(
InternalCompilerError()
<< errinfo_comment("Storage size of non-storable tuple type requested."));
InternalCompilerError() <<
errinfo_comment("Storage size of non-storable tuple type requested.")
);
}
unsigned TupleType::sizeOnStack() const