We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 691e200 commit 50e275fCopy full SHA for 50e275f
src/utils/shapes/ShapeContainer.h
@@ -237,6 +237,14 @@ class ShapeContainer {
237
*/
238
class ShapeListener {
239
public:
240
- virtual void polygonChanged(const SUMOPolygon* const poly, const bool added, const bool removed) {}
241
- virtual void poiChanged(const PointOfInterest* const poi, const bool added, const bool removed) {}
+ virtual void polygonChanged(const SUMOPolygon* const poly, const bool added, const bool removed) {
+ UNUSED_PARAMETER(poly);
242
+ UNUSED_PARAMETER(added);
243
+ UNUSED_PARAMETER(removed);
244
+ }
245
+ virtual void poiChanged(const PointOfInterest* const poi, const bool added, const bool removed) {
246
+ UNUSED_PARAMETER(poi);
247
248
249
250
};
0 commit comments