mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-18 07:52:14 +01:00
5c6ee6127c
Members of this array are later passed to functions that accept non-const pointers. These functions probably don't modify their arguments, so a better solution would be to update those functions to accept const pointers. However, they look like third-party code, so that would require changing the code again on every update. Removing const here fixes at least the compiler warning for now. This helps towards #1792.