From da47f9df7b508149f137ebd4d80f6b31e27131d3 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Fri, 6 Nov 2015 20:56:14 +0100 Subject: style fixes --- libsolidity/analysis/ReferencesResolver.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libsolidity/analysis/ReferencesResolver.h') diff --git a/libsolidity/analysis/ReferencesResolver.h b/libsolidity/analysis/ReferencesResolver.h index be618f23..bde4bbc5 100644 --- a/libsolidity/analysis/ReferencesResolver.h +++ b/libsolidity/analysis/ReferencesResolver.h @@ -80,16 +80,16 @@ private: TypePointer typeFor(TypeName const& _typeName); /// Adds a new error to the list of errors. - void TypeError(SourceLocation const& _location, std::string const& _description); + void typeError(SourceLocation const& _location, std::string const& _description); /// Adds a new error to the list of errors and throws to abort type checking. - void TypeFatalError(SourceLocation const& _location, std::string const& _description); + void fatalTypeError(SourceLocation const& _location, std::string const& _description); /// Adds a new error to the list of errors. - void DeclarationError(const SourceLocation& _location, std::string const& _description); + void declarationError(const SourceLocation& _location, std::string const& _description); /// Adds a new error to the list of errors and throws to abort type checking. - void DeclarationFatalError(const SourceLocation& _location, std::string const& _description); + void fatalDeclarationError(const SourceLocation& _location, std::string const& _description); ErrorList& m_errors; NameAndTypeResolver& m_resolver; -- cgit