From a2b8858e36c70bf4350eb6f7755e75c43df6ee02 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Sun, 30 May 2021 12:50:30 +0300 Subject: [PATCH] win: suppress warnings --- include/cglm/struct/cam.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/cglm/struct/cam.h b/include/cglm/struct/cam.h index 151eec4..c2babb9 100644 --- a/include/cglm/struct/cam.h +++ b/include/cglm/struct/cam.h @@ -499,13 +499,13 @@ glms_persp_decomp_y(mat4s proj, float * __restrict top, float * __restrict bottom) { #if CGLM_CONFIG_CLIP_CONTROL == CGLM_CLIP_CONTROL_LH_ZO - return glms_persp_decomp_y_lh_zo(proj, top, bottom); + glms_persp_decomp_y_lh_zo(proj, top, bottom); #elif CGLM_CONFIG_CLIP_CONTROL == CGLM_CLIP_CONTROL_LH_NO - return glms_persp_decomp_y_lh_no(proj, top, bottom); + glms_persp_decomp_y_lh_no(proj, top, bottom); #elif CGLM_CONFIG_CLIP_CONTROL == CGLM_CLIP_CONTROL_RH_ZO - return glms_persp_decomp_y_rh_zo(proj, top, bottom); + glms_persp_decomp_y_rh_zo(proj, top, bottom); #elif CGLM_CONFIG_CLIP_CONTROL == CGLM_CLIP_CONTROL_RH_NO - return glms_persp_decomp_y_rh_no(proj, top, bottom); + glms_persp_decomp_y_rh_no(proj, top, bottom); #endif }