| 5223 | } |
| 5224 | |
| 5225 | bool constParameterPointer_map_contains(const std::map<int*, int>& m, int* p) { |
| 5226 | #if __cplusplus >= 202002L |
| 5227 | return m.contains(p); |
| 5228 | #else |
| 5229 | return m.count(p) > 0; |
| 5230 | #endif |
| 5231 | } |
| 5232 | |
| 5233 | // cppcheck-suppress constParameterReference |
| 5234 | void constParameterReference_push_back(std::vector<std::string>& v, std::string& s) { // #12661 |