Skip to content

Commit 3236572

Browse files
author
Owen Jones
committed
Change template of value_set_analysis_baset
From ValueSett to Value_Set_Domaint. This is so that we can override the merge logic to keep track of the boolean use_precise_evs (which will become more than just a boolean in future).
1 parent a0b5eab commit 3236572

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/pointer-analysis/value_set_analysis.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ Author: Daniel Kroening, [email protected]
2424

2525
class xmlt;
2626

27-
template<class Value_Sett>
27+
template<class Value_Set_Domaint>
2828
class value_set_analysis_baset:
2929
public value_setst,
30-
public static_analysist<value_set_domaint<Value_Sett> >
30+
public static_analysist<Value_Set_Domaint>
3131
{
3232
public:
33-
typedef value_set_domaint<Value_Sett> domaint;
33+
typedef Value_Set_Domaint domaint;
3434
typedef static_analysist<domaint> baset;
3535
typedef typename baset::locationt locationt;
3636

@@ -134,7 +134,8 @@ class value_set_analysis_baset:
134134
}
135135
};
136136

137-
typedef value_set_analysis_baset<value_sett> value_set_analysist;
137+
typedef value_set_analysis_baset<value_set_domaint<value_sett> >
138+
value_set_analysist;
138139

139140
void convert(
140141
const goto_functionst &goto_functions,

0 commit comments

Comments
 (0)