The open source OpenXR runtime

m/predict: Add C++ extern guards

+10
+10
src/xrt/auxiliary/math/m_predict.h
··· 12 #include "xrt/xrt_defines.h" 13 14 15 /*! 16 * Using the given @p xrt_space_relation predicts a new @p xrt_space_relation 17 * @p delta_s into the future. ··· 23 */ 24 void 25 m_predict_relation(const struct xrt_space_relation *rel, double delta_s, struct xrt_space_relation *out_rel);
··· 12 #include "xrt/xrt_defines.h" 13 14 15 + #ifdef __cplusplus 16 + extern "C" { 17 + #endif 18 + 19 + 20 /*! 21 * Using the given @p xrt_space_relation predicts a new @p xrt_space_relation 22 * @p delta_s into the future. ··· 28 */ 29 void 30 m_predict_relation(const struct xrt_space_relation *rel, double delta_s, struct xrt_space_relation *out_rel); 31 + 32 + 33 + #ifdef __cplusplus 34 + } 35 + #endif