From 807d5589b4b6c8a775fda77a9e4159ed55f39d06 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Sat, 26 Jan 2019 16:05:11 +0300 Subject: [PATCH] call: add missing end guard to call headers --- include/cglm/call/ease.h | 3 +++ include/cglm/call/sphere.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/include/cglm/call/ease.h b/include/cglm/call/ease.h index 9f1757e..87e39ca 100644 --- a/include/cglm/call/ease.h +++ b/include/cglm/call/ease.h @@ -137,4 +137,7 @@ CGLM_EXPORT float glmc_ease_bounce_inout(float t); +#ifdef __cplusplus +} +#endif #endif /* cglmc_ease_h */ diff --git a/include/cglm/call/sphere.h b/include/cglm/call/sphere.h index 02c3d55..9b96546 100644 --- a/include/cglm/call/sphere.h +++ b/include/cglm/call/sphere.h @@ -33,4 +33,7 @@ CGLM_EXPORT bool glmc_sphere_point(vec4 s, vec3 point); +#ifdef __cplusplus +} +#endif #endif /* cglmc_sphere_h */