Revert "mark readonly parameters as const"

This commit is contained in:
Recep Aslantas
2019-04-30 08:19:07 +03:00
committed by GitHub
parent 98244da67f
commit bb8ff25752
54 changed files with 751 additions and 762 deletions

View File

@@ -10,6 +10,6 @@
CGLM_EXPORT
float
glmc_smc(float s, const mat4 m, const vec4 c) {
glmc_smc(float s, mat4 m, vec4 c) {
return glm_smc(s, m, c);
}