We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f815cc0 commit e32c6c5Copy full SHA for e32c6c5
src/goto-diff/unified_diff.cpp
@@ -401,7 +401,7 @@ void unified_difft::output(std::ostream &os) const
401
bool unified_difft::instructions_equal(
402
const goto_programt::instructiont &ins1,
403
const goto_programt::instructiont &ins2,
404
- bool recurse) const
+ bool recurse)
405
{
406
return
407
ins1.code==ins2.code &&
src/goto-diff/unified_diff.h
@@ -85,10 +85,10 @@ class unified_difft
85
const differencest &differences,
86
std::ostream &os) const;
87
88
- bool instructions_equal(
+ static bool instructions_equal(
89
90
91
- bool recurse=true) const;
+ bool recurse=true);
92
93
const differences_mapt &differences_map() const;
94
0 commit comments