Bläddra i källkod

Allow reply() to use const string with no warning

Scott Lahteine 8 år sedan
förälder
incheckning
79ba983782
1 ändrade filer med 1 tillägg och 0 borttagningar
  1. 1
    0
      Marlin/twibus.h

+ 1
- 0
Marlin/twibus.h Visa fil

@@ -183,6 +183,7 @@ class TWIBus {
183 183
        * @details Send the buffer and clear it.
184 184
        */
185 185
       void reply(char str[]=NULL);
186
+      inline void reply(const char str[]) { this->reply((char*)str); }
186 187
 
187 188
     #endif
188 189
 

Laddar…
Avbryt
Spara