We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f54db47 commit 8c35211Copy full SHA for 8c35211
src/goto-diff/unified_diff.h
@@ -53,7 +53,6 @@ class unified_difft
53
const irep_idt &function,
54
goto_program_difft &dest) const;
55
56
-protected:
57
const goto_functionst &old_goto_functions;
58
const namespacet ns_old;
59
const goto_functionst &new_goto_functions;
@@ -62,8 +61,6 @@ class unified_difft
62
61
typedef std::vector<differencet> differencest;
63
typedef std::map<irep_idt, differencest> differences_mapt;
64
65
- differences_mapt differences_map_;
66
-
67
void unified_diff(
68
const irep_idt &identifier,
69
const goto_programt &old_goto_program,
@@ -105,6 +102,9 @@ class unified_difft
105
102
*ins2.get_target(),
106
103
false));
107
104
}
+
+private:
+ differences_mapt differences_map_;
108
};
109
110
#endif // CPROVER_GOTO_DIFF_UNIFIED_DIFF_H
0 commit comments