aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhett Aultman <roadriverrail@gmail.com>2016-11-28 10:50:42 +0800
committerRhett Aultman <rhett.aultman@meraki.net>2017-01-17 01:32:57 +0800
commit9e88f1eebe27c780c80be06d702eac30e2fc5fa3 (patch)
tree1216f94e181778b9b445e143fb64da8a08c2db87
parentce3082dec2178273d4913a6f9df909c0aca8ef5a (diff)
downloaddexon-solidity-9e88f1eebe27c780c80be06d702eac30e2fc5fa3.tar.gz
dexon-solidity-9e88f1eebe27c780c80be06d702eac30e2fc5fa3.tar.zst
dexon-solidity-9e88f1eebe27c780c80be06d702eac30e2fc5fa3.zip
Tab whitespace cleanup (again)
-rw-r--r--libsolidity/interface/CompilerStack.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp
index dd518860..9c4618e7 100644
--- a/libsolidity/interface/CompilerStack.cpp
+++ b/libsolidity/interface/CompilerStack.cpp
@@ -187,7 +187,8 @@ bool CompilerStack::parse()
BOOST_THROW_EXCEPTION(DeclarationError() <<
errinfo_sourceLocation(contract->location()) <<
errinfo_comment(contract->name() + " is already defined.") <<
- errinfo_secondarySourceLocation(SecondarySourceLocation().append(existingContract->location()), "Previous definition is here:"));
+ errinfo_secondarySourceLocation(
+ SecondarySourceLocation().append(existingContract->location()), "Previous definition is here:"));
}
m_contracts[contract->name()].contract = contract;
}