Skip to content

Commit

Permalink
bugfix: undeclared identifier in Body.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 18, 2024
1 parent f191871 commit b7eb70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/native/glue/bo/Body.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ JNIEXPORT jlong JNICALL Java_com_github_stephengold_joltjni_Body_getWorldTransfo
(JNIEnv *, jclass, jlong bodyVa) {
const Body * const pBody = reinterpret_cast<Body *> (bodyVa);
RMat44 * const pResult = new RMat44();
TRACE_NEW("RMat44", result)
TRACE_NEW("RMat44", pResult)
*pResult = pBody->GetWorldTransform();
return reinterpret_cast<jlong> (pResult);
}
Expand Down

0 comments on commit b7eb70d

Please sign in to comment.