Skip to content

Commit 0ba6281

Browse files
committed
glue: whitespace
1 parent 31fb053 commit 0ba6281

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/native/glue/c/CastShapeCollector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_CastShapeCollector_fr
4141
= reinterpret_cast<CastShapeCollector *> (collectorVa);
4242
TRACE_DELETE("CastShapeCollector", pCollector)
4343
delete pCollector;
44-
}
44+
}

src/main/native/glue/c/CustomCollidePointCollector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ JNIEXPORT jlong JNICALL Java_com_github_stephengold_joltjni_CustomCollidePointCo
8383
= new CustomCollidePointCollector(pEnv, javaObject);
8484
TRACE_NEW("CustomCollidePointCollector", pResult)
8585
return reinterpret_cast<jlong> (pResult);
86-
}
86+
}

src/main/native/glue/co/CollidePointCollector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_CollidePointCollector
4141
= reinterpret_cast<CollidePointCollector *> (collectorVa);
4242
TRACE_DELETE("CollidePointCollector", pCollector)
4343
delete pCollector;
44-
}
44+
}

src/main/native/glue/h/HeightFieldShape.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ JNIEXPORT jboolean JNICALL Java_com_github_stephengold_joltjni_HeightFieldShape_
9292
= reinterpret_cast<HeightFieldShape *> (shapeVa);
9393
const bool result = pShape->IsNoCollision(x, y);
9494
return result;
95-
}
95+
}

src/main/native/glue/r/RShapeCast.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_RShapeCast_free
5858
RShapeCast * const pShapeCast = reinterpret_cast<RShapeCast *> (castVa);
5959
TRACE_DELETE("RShapeCast", pShapeCast)
6060
delete pShapeCast;
61-
}
61+
}

src/main/native/glue/s/ShapeCastResult.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ JNIEXPORT jboolean JNICALL Java_com_github_stephengold_joltjni_ShapeCastResult_g
5353
= reinterpret_cast<ShapeCastResult *> (castResultVa);
5454
const bool result = pCastResult->mIsBackFaceHit;
5555
return result;
56-
}
56+
}

0 commit comments

Comments
 (0)