Add missing semicolons after mjFREESTACK.
The code is already well-formed since the macro itself contains a semicolon, however this is stylistically inconsistent with the rest of the codebase. The missing semicolon is also problematic for automated code transformations. PiperOrigin-RevId: 494734527 Change-Id: I9aef5844c8c3cce6eefea8f8bf13a4ab3dd79878
This commit is contained in:
committed by
Copybara-Service
parent
63d1c0ccea
commit
946c12faae
@@ -734,7 +734,7 @@ void mj_implicitSkip(const mjModel *m, mjData *d, int skipfactor) {
|
||||
// advance state and time
|
||||
mj_advance(m, d, d->act_dot, qacc, NULL);
|
||||
|
||||
mjFREESTACK
|
||||
mjFREESTACK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -917,7 +917,7 @@ void mj_makeMSparse(const mjModel* m, mjData* d, int* rownnz, int* rowadr, int*
|
||||
}
|
||||
}
|
||||
|
||||
mjFREESTACK
|
||||
mjFREESTACK;
|
||||
}
|
||||
|
||||
|
||||
@@ -952,7 +952,7 @@ void mj_setMSparse(const mjModel* m, mjData* d, mjtNum* dst,
|
||||
}
|
||||
}
|
||||
|
||||
mjFREESTACK
|
||||
mjFREESTACK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user