File tree 3 files changed +0
-12
lines changed
3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ std::unique_ptr<c_qualifierst> java_qualifierst::clone() const
27
27
return std::move (other);
28
28
}
29
29
30
- std::size_t java_qualifierst::count () const
31
- {
32
- return c_qualifierst::count () + annotations.size ();
33
- }
34
-
35
30
void java_qualifierst::clear ()
36
31
{
37
32
c_qualifierst::clear ();
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ class java_qualifierst : public c_qualifierst
31
31
{
32
32
return annotations;
33
33
}
34
- std::size_t count () const override ;
35
34
36
35
void clear () override ;
37
36
Original file line number Diff line number Diff line change @@ -109,12 +109,6 @@ class c_qualifierst
109
109
is_noreturn |= other.is_noreturn ;
110
110
return *this ;
111
111
}
112
-
113
- virtual std::size_t count () const
114
- {
115
- return is_constant + is_volatile + is_restricted + is_atomic + is_ptr32 +
116
- is_ptr64 + is_nodiscard + is_noreturn;
117
- }
118
112
};
119
113
120
114
#endif // CPROVER_ANSI_C_C_QUALIFIERS_H
You can’t perform that action at this time.
0 commit comments