-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixedalarm_cpp.txt
27 lines (27 loc) · 1.27 KB
/
fixedalarm_cpp.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
../fixedalarm.c:208:22: style A conversion should not be performed from pointer to void into pointer to object. [misra-c2012-11.5]
alarm_t *alarm = (alarm_t *)arg;
^
../fixedalarm.c:241:22: style A conversion should not be performed from pointer to void into pointer to object. [misra-c2012-11.5]
alarm_t *alarm = (alarm_t *)arg;
^
../fixedalarm.c:258:22: style A conversion should not be performed from pointer to void into pointer to object. [misra-c2012-11.5]
alarm_t *alarm = (alarm_t *)arg;
^
../carpark.h:13:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define CARS_PER_LEVEL 20
^
../carpark.h:14:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define EMPTY_LPR ""
^
../carpark.h:16:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define LOWERING 'L'
^
../carpark.h:18:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define OPEN 'O'
^
../carpark.h:19:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define DENIED 'X'
^
../carpark.h:20:0: style A project should not contain unused macro declarations. [misra-c2012-2.5]
#define FULL 'F'
^