Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 4c4b5e8

Browse files
committed
Style fix
1 parent a953e05 commit 4c4b5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/Include/Tkge/Transform.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Tkge
1111
[[nodiscard]] auto ToView() const -> glm::mat4;
1212
[[nodiscard]] auto ToInverseView() const -> glm::mat4;
1313

14-
[[nodiscard]] static constexpr auto Accumulate(const Transform& a, const Transform& b) -> Transform
14+
[[nodiscard]] static constexpr Transform Accumulate(const Transform& a, const Transform& b)
1515
{
1616
return Transform{
1717
.position = a.position + b.position,

0 commit comments

Comments
 (0)