2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-04 02:01:51 +00:00

chore: update formatting due to updated clang-format version

This commit is contained in:
Jan
2025-06-28 11:09:03 +01:00
parent 8542675d02
commit 2176480a37
5 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ namespace tangent_space
void SetVec3(void* dest, const size_t index, const size_t stride, const tvec3& data)
{
auto* out = reinterpret_cast<float(*)[3]>(static_cast<char*>(dest) + stride * index);
auto* out = reinterpret_cast<float (*)[3]>(static_cast<char*>(dest) + stride * index);
(*out)[0] = data[0];
(*out)[1] = data[1];
(*out)[2] = data[2];