Skip to content

Commit

Permalink
Mat44: solve breakage of -Pflavor=Dp builds
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 20, 2025
1 parent c1d9d86 commit cb3b0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/native/glue/m/Mat44.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ JNIEXPORT jlong JNICALL Java_com_github_stephengold_joltjni_Mat44_createFromColu
JNIEXPORT jlong JNICALL Java_com_github_stephengold_joltjni_Mat44_createFromRMatrix
(JNIEnv *, jclass, jlong rMatrixVa) {
RMat44 * const pRMatrix = reinterpret_cast<RMat44 *> (rMatrixVa);
Mat44 * const pResult = new Mat44(*pRMatrix);
Mat44 * const pResult = new Mat44(pRMatrix->ToMat44());
TRACE_NEW("Mat44", pResult)
return reinterpret_cast<jlong> (pResult);
}
Expand Down

0 comments on commit cb3b0ee

Please sign in to comment.