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,35 +10,35 @@
CGLM_EXPORT
void
glmc_mat4_print(const mat4 matrix,
FILE * const __restrict ostream) {
glmc_mat4_print(mat4 matrix,
FILE * __restrict ostream) {
glm_mat4_print(matrix, ostream);
}
CGLM_EXPORT
void
glmc_mat3_print(const mat3 matrix,
FILE * const __restrict ostream) {
glmc_mat3_print(mat3 matrix,
FILE * __restrict ostream) {
glm_mat3_print(matrix, ostream);
}
CGLM_EXPORT
void
glmc_vec4_print(const vec4 vec,
FILE * const __restrict ostream) {
glmc_vec4_print(vec4 vec,
FILE * __restrict ostream) {
glm_vec4_print(vec, ostream);
}
CGLM_EXPORT
void
glmc_vec3_print(const vec3 vec,
FILE * const __restrict ostream) {
glmc_vec3_print(vec3 vec,
FILE * __restrict ostream) {
glm_vec3_print(vec, ostream);
}
CGLM_EXPORT
void
glmc_versor_print(const versor vec,
FILE * const __restrict ostream) {
glmc_versor_print(versor vec,
FILE * __restrict ostream) {
glm_versor_print(vec, ostream);
}