Skip to content
Snippets Groups Projects
Commit 79ba9837 authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

Allow reply() to use const string with no warning

parent 27570c08
Branches
Tags
No related merge requests found
......@@ -183,6 +183,7 @@ class TWIBus {
* @details Send the buffer and clear it.
*/
void reply(char str[]=NULL);
inline void reply(const char str[]) { this->reply((char*)str); }
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment