convert defines into static constexpr

This commit is contained in:
Axel Kohlmeyer
2024-01-18 23:59:33 -05:00
parent 48e83b2298
commit 3ae4779c7f
29 changed files with 68 additions and 67 deletions

View File

@ -35,7 +35,7 @@ using MathConst::DEG2RAD;
using MathConst::RAD2DEG;
static constexpr double epsilon = 6.5e-6;
#define MAXLINE 1024
static constexpr int MAXLINE = 1024;
/* ---------------------------------------------------------------------- */
void AngleWrite::command(int narg, char **arg)