Index: sources/canbus/MessageGlobals.h =================================================================== diff -u -r3561f79af1a92356eea01d5d0c3297c69d2ecdf2 -r4a67c01045f365be38f1a12a8572c0070d343e1e --- sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision 3561f79af1a92356eea01d5d0c3297c69d2ecdf2) +++ sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision 4a67c01045f365be38f1a12a8572c0070d343e1e) @@ -357,15 +357,15 @@ // initialized flag and data.length() == 0 became the same. // It is preferred to keep it as is so that the initialization is independent of data. return !initialized || !data.length(); - // coco end + // disabled coco end } bool isComplete() { // disabled coco begin validated:Has been validated manually. // Since the crc is part of the data and there is no message without crc // then a message would never be empty. // It is preferred to keep it as is so that the initialization is independent of data. return !isEmpty() && data.length() == length; - // coco end + // disabled coco end } };