1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

glm: remove unused variable (prevents compiling ui with -prod)

This commit is contained in:
Delyan Angelov 2020-05-10 19:59:26 +03:00
parent 1bf13f8a09
commit 7c5905164e

View File

@ -219,7 +219,6 @@ pub fn scale(m Mat4, v Vec3) Mat4 {
// multiplicates two matrices
pub fn mult(a, b Mat4) Mat4 {
da := a.data
db := b.data
mut out := f32_calloc(16)
mut row0 := f32_calloc(4)