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:
Saran Tunyasuvunakool
2022-12-12 08:21:41 -08:00
committed by Copybara-Service
parent 63d1c0ccea
commit 946c12faae
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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;
}
+2 -2
View File
@@ -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;
}