ppedro74 / Arduino-SerialCommands

BSD 3-Clause "New" or "Revised" License
87 stars 29 forks source link

Fixed char const-ness warning #3

Closed rkonklex closed 5 years ago

rkonklex commented 5 years ago

C++ does not allow to implicitly cast away the const modifier, which resulted in a warning for term and delim parameters. This patch changes the types of these parameters and fields to const char *, since they are not intended to be mutable.

ppedro74 commented 5 years ago

Thanks nythil.