aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/ReferencesResolver.h
diff options
context:
space:
mode:
authorLianaHus <liana@ethdev.com>2015-11-07 03:56:14 +0800
committerLianaHus <liana@ethdev.com>2015-11-07 03:56:14 +0800
commitda47f9df7b508149f137ebd4d80f6b31e27131d3 (patch)
tree1c402e074b234c72518abaea52c6ae7f2bd504ec /libsolidity/analysis/ReferencesResolver.h
parent63060fc1f0f2f27ab4ad853c7295c2cfba373b83 (diff)
downloaddexon-solidity-da47f9df7b508149f137ebd4d80f6b31e27131d3.tar.gz
dexon-solidity-da47f9df7b508149f137ebd4d80f6b31e27131d3.tar.zst
dexon-solidity-da47f9df7b508149f137ebd4d80f6b31e27131d3.zip
style fixes
Diffstat (limited to 'libsolidity/analysis/ReferencesResolver.h')
-rw-r--r--libsolidity/analysis/ReferencesResolver.h8
1 files changed, 4 insertions, 4 deletions
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;