From 3be79aee9858dbea06235100c8db7f38ae6ae52e Mon Sep 17 00:00:00 2001 From: amai2012 Date: Tue, 14 Apr 2020 15:47:44 +0200 Subject: [PATCH] Cure invalid constant https://lgtm.com/projects/g/danmar/cppcheck?mode=list poined out this "implicit string concatenation" --- addons/misra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/misra.py b/addons/misra.py index 4d6e7f223..dc383c73e 100755 --- a/addons/misra.py +++ b/addons/misra.py @@ -106,7 +106,7 @@ C90_STDLIB_IDENTIFIERS = { ], # D.6 Mathematics 'math.h': [ - 'HUGE_VAL' 'acos', 'asin' , 'atan2', 'cos', 'sin', 'tan', 'cosh', + 'HUGE_VAL', 'acos', 'asin' , 'atan2', 'cos', 'sin', 'tan', 'cosh', 'sinh', 'tanh', 'exp', 'frexp', 'ldexp', 'log', 'loglO', 'modf', 'pow', 'sqrt', 'ceil', 'fabs', 'floor', 'fmod', ],