diff options
Diffstat (limited to 'CallGraph.cpp')
-rw-r--r-- | CallGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CallGraph.cpp b/CallGraph.cpp index 8766114f..a671796b 100644 --- a/CallGraph.cpp +++ b/CallGraph.cpp @@ -58,7 +58,7 @@ bool CallGraph::visit(Identifier const& _identifier) { if (m_overrideResolver) fun = (*m_overrideResolver)(fun->getName()); - solAssert(fun, ""); + solAssert(fun, "Error finding override for function " + fun->getName()); addFunction(*fun); } return true; |