We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6cba2f commit 473a516Copy full SHA for 473a516
plugins/robots/common/twoDModel/src/engine/model/physics/box2DPhysicsEngine.cpp
@@ -260,7 +260,8 @@ void Box2DPhysicsEngine::recalculateParameters(qreal timeInterval)
260
261
mWorld->Step(secondsInterval, velocityIterations, positionIterations);
262
263
- if ("If you want debug BOX2D, fix this expression to be false" && true) {
+ static volatile auto sThisFlagHelpsToAvoidClangError = true;
264
+ if ("If you want debug BOX2D, fix this expression to be false" && sThisFlagHelpsToAvoidClangError) {
265
return;
266
}
267
0 commit comments