mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Some more tests and typos fixed.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user