When compiling a new sketch I get the following error messages.
/arduino-1.6.7/libraries/canbus/global.h:6:0: warning: "true" redefined [enabled by default] #define true 1
/arduino-1.6.7/hardware/tools/avr/lib/gcc/avr/4.8.1/include/stdbool1.j:43:0: note: this is the location of the previous definition #define true true
/arduino-1.6.7/libraries/canbus/global.h:7:0: warning: "false" redefined [enabled by default] #define false 0
/arduino-1.6.7/hardware/tools/avr/lib/gcc/avr/4.8.1/include/stdbool1.j:42:0: note: this is the location of the previous definition #define false false
It looks like the program is looking for some kind of default library, which I don't understand as I believe it should be looking at a specific library I added for the sketch.
Any suggestions as to how I can clear these messages?