1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-25 04:48:31 +00:00

PGMSTR constexpr => const

This commit is contained in:
Scott Lahteine 2020-08-22 16:40:22 -05:00
parent fe89f5fdff
commit f3d0b49928

View File

@ -38,7 +38,7 @@
// String helper // String helper
#ifndef PGMSTR #ifndef PGMSTR
#define PGMSTR(NAM,STR) constexpr char NAM[] = STR #define PGMSTR(NAM,STR) const char NAM[] = STR
#endif #endif
inline void watchdog_refresh() { inline void watchdog_refresh() {