aboutsummaryrefslogtreecommitdiffstats
path: root/SourceReferenceFormatter.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-05-04 21:46:46 +0800
committerLiana Husikyan <liana@ethdev.com>2015-05-04 23:18:44 +0800
commitebaf3c48a64ce7bbd6643b1d115d1c59005d15ec (patch)
tree5ec4d1a40c99b769ce8127899f5b4031ea0430bc /SourceReferenceFormatter.h
parent10c3d7655570277b78912b6ff14b5078fce1077a (diff)
downloaddexon-solidity-ebaf3c48a64ce7bbd6643b1d115d1c59005d15ec.tar.gz
dexon-solidity-ebaf3c48a64ce7bbd6643b1d115d1c59005d15ec.tar.zst
dexon-solidity-ebaf3c48a64ce7bbd6643b1d115d1c59005d15ec.zip
small fix
Diffstat (limited to 'SourceReferenceFormatter.h')
-rw-r--r--SourceReferenceFormatter.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/SourceReferenceFormatter.h b/SourceReferenceFormatter.h
index 43d3882e..ed2564f3 100644
--- a/SourceReferenceFormatter.h
+++ b/SourceReferenceFormatter.h
@@ -40,8 +40,12 @@ struct SourceReferenceFormatter
{
public:
static void printSourceLocation(std::ostream& _stream, SourceLocation const& _location, Scanner const& _scanner);
- static void printExceptionInformation(std::ostream& _stream, Exception const& _exception,
- std::string const& _name, CompilerStack const& _compiler);
+ static void printExceptionInformation(
+ std::ostream& _stream,
+ Exception const& _exception,
+ std::string const& _name,
+ CompilerStack const& _compiler
+ );
private:
static void printSourceName(std::ostream& _stream, SourceLocation const& _location, Scanner const& _scanner);
};