Добавление объявлений для inline методов в единицах трансляции в соответствии со стандартом C99

This commit is contained in:
Andrey Pokidov 2025-02-03 23:34:01 +07:00
parent e39765b733
commit 6c0ae92ed4
14 changed files with 646 additions and 1 deletions

View file

@ -173,7 +173,7 @@ inline float bgc_degrees_to_turns_fp32(const float radians)
return radians * BGC_TURNS_IN_DEGREE_FP32;
}
inline double fp64_degrees_to_turns(const double radians)
inline double bgc_degrees_to_turns_fp64(const double radians)
{
return radians * BGC_TURNS_IN_DEGREE_FP64;
}