From 065bf852435c485d8fba26fb963ffcafc297e87b Mon Sep 17 00:00:00 2001 From: Ben Kuper Date: Wed, 30 Oct 2024 19:09:35 +0100 Subject: [PATCH] fix typo --- modules/juce_opengl/geometry/juce_Vector3D.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_opengl/geometry/juce_Vector3D.h b/modules/juce_opengl/geometry/juce_Vector3D.h index c4d47c91fc..9378d995ed 100644 --- a/modules/juce_opengl/geometry/juce_Vector3D.h +++ b/modules/juce_opengl/geometry/juce_Vector3D.h @@ -76,7 +76,7 @@ public: Vector3D multiplied (Vector3D other) const noexcept { return { x * other.x, y * other.y, z * other.z }; } - void multiply(Vector3D other) const noexcept { x *= other.x; y *= other.y; z *= other.z } + void multiply(Vector3D other) const noexcept { x *= other.x; y *= other.y; z *= other.z; } /** Returns the dot-product of these two vectors. */ Type operator* (Vector3D other) const noexcept { return x * other.x + y * other.y + z * other.z; }