Skip to content

Commit 233a370

Browse files
Merge pull request #3339 from tautschnig/vs-verifier_text
Remove unused messaget parameter from static_verifier_text [blocks: #2310]
2 parents 2aafd9b + 087b7e6 commit 233a370

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/goto-analyzer/static_verifier.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ static void static_verifier_xml(
107107
static void static_verifier_text(
108108
const std::vector<static_verifier_resultt> &results,
109109
const namespacet &ns,
110-
messaget &m,
111110
std::ostream &out)
112111
{
113112
irep_idt last_function_id;
@@ -287,7 +286,7 @@ bool static_verifier(
287286
}
288287
else if(options.get_bool_option("text"))
289288
{
290-
static_verifier_text(results, ns, m, out);
289+
static_verifier_text(results, ns, out);
291290
}
292291
else
293292
{

0 commit comments

Comments
 (0)