Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
Compiler Error 307
This error appear when you reset a default value in a method.
class myClasse{
int8_t myMethod(uint8_t myValue = 123);
};
int8_t myClass::myMethod(uint8_t myValue = 123){ //=> error
//...
}
int8_t myClass::myMethod(uint8_t myValue){ //=> no error
//...
}