File tree Expand file tree Collapse file tree 4 files changed +0
-13
lines changed Expand file tree Collapse file tree 4 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -159,9 +159,6 @@ class Traverse {
159
159
template <typename T> Result operator ()(const Designator<T> &x) const {
160
160
return visitor_ (x.u );
161
161
}
162
- template <typename T> Result operator ()(const Variable<T> &x) const {
163
- return visitor_ (x.u );
164
- }
165
162
Result operator ()(const DescriptorInquiry &x) const {
166
163
return visitor_ (x.base ());
167
164
}
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ using SymbolVector = std::vector<SymbolRef>;
44
44
45
45
// Forward declarations
46
46
struct DataRef ;
47
- template <typename T> struct Variable ;
48
47
49
48
// Reference a base object in memory. This can be a Fortran symbol,
50
49
// static data (e.g., CHARACTER literal), or compiler-created temporary.
Original file line number Diff line number Diff line change @@ -106,11 +106,6 @@ class DumpEvaluateExpr {
106
106
Show (x.u );
107
107
Outdent ();
108
108
}
109
- template <typename T> void Show (const evaluate::Variable<T> &x) {
110
- Indent (" variable" );
111
- Show (x.u );
112
- Outdent ();
113
- }
114
109
void Show (const evaluate::DescriptorInquiry &x);
115
110
void Show (const evaluate::SpecificIntrinsic &);
116
111
void Show (const evaluate::ProcedureDesignator &x);
Original file line number Diff line number Diff line change @@ -165,10 +165,6 @@ class ArrayBaseFinder {
165
165
RT find (const Fortran::evaluate::Designator<T> &x) {
166
166
return find (x.u );
167
167
}
168
- template <typename T>
169
- RT find (const Fortran::evaluate::Variable<T> &x) {
170
- return find (x.u );
171
- }
172
168
RT find (const Fortran::evaluate::DescriptorInquiry &) { return {}; }
173
169
RT find (const Fortran::evaluate::SpecificIntrinsic &) { return {}; }
174
170
RT find (const Fortran::evaluate::ProcedureDesignator &x) { return {}; }
You can’t perform that action at this time.
0 commit comments