summaryrefslogtreecommitdiff
path: root/src/mbgl/util/mat3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/mat3.cpp')
-rw-r--r--src/mbgl/util/mat3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/mat3.cpp b/src/mbgl/util/mat3.cpp
index f4ae8841d5..88c769790e 100644
--- a/src/mbgl/util/mat3.cpp
+++ b/src/mbgl/util/mat3.cpp
@@ -80,7 +80,7 @@ void matrix::rotate(mat3& out, const mat3& a, double rad) {
out[6] = a20;
out[7] = a21;
out[8] = a22;
-};
+}
void matrix::scale(mat3& out, const mat3& a, double x, double y) {
out[0] = x * a[0];