File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed
Expand file tree Collapse file tree 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
2727 return std::move (other);
2828}
2929
30- std::size_t java_qualifierst::count () const
31- {
32- return c_qualifierst::count () + annotations.size ();
33- }
34-
3530void java_qualifierst::clear ()
3631{
3732 c_qualifierst::clear ();
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ class java_qualifierst : public c_qualifierst
3131 {
3232 return annotations;
3333 }
34- std::size_t count () const override ;
3534
3635 void clear () override ;
3736
Original file line number Diff line number Diff line change @@ -109,12 +109,6 @@ class c_qualifierst
109109 is_noreturn |= other.is_noreturn ;
110110 return *this ;
111111 }
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- }
118112};
119113
120114#endif // CPROVER_ANSI_C_C_QUALIFIERS_H
You can’t perform that action at this time.
0 commit comments