From 7390d53f79b9846b8ef052401a5405c13d297e1a Mon Sep 17 00:00:00 2001 From: jpekkila Date: Thu, 17 Oct 2019 14:41:13 +0300 Subject: [PATCH] Added missing extern Cs to verification.h --- src/utils/verification.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/utils/verification.h b/src/utils/verification.h index 14b420b..2e64746 100644 --- a/src/utils/verification.h +++ b/src/utils/verification.h @@ -3,4 +3,12 @@ #include "memory.h" +#ifdef __cplusplus +extern "C" { +#endif + bool acVerifyMesh(const AcMesh model, const AcMesh candidate); + +#ifdef __cplusplus +} // extern "C" +#endif