The open source OpenXR runtime

m/predict: Add C++ extern guards

+10
+10
src/xrt/auxiliary/math/m_predict.h
··· 12 12 #include "xrt/xrt_defines.h" 13 13 14 14 15 + #ifdef __cplusplus 16 + extern "C" { 17 + #endif 18 + 19 + 15 20 /*! 16 21 * Using the given @p xrt_space_relation predicts a new @p xrt_space_relation 17 22 * @p delta_s into the future. ··· 23 28 */ 24 29 void 25 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