diff --git a/src/lib/ebus/filereader.h b/src/lib/ebus/filereader.h index 0b873305..d89ffaa8 100644 --- a/src/lib/ebus/filereader.h +++ b/src/lib/ebus/filereader.h @@ -185,7 +185,7 @@ public: * Left and right trim the string. * @param str the @a string to trim. */ - virtual void trim(string& str) { + static void trim(string& str) { size_t pos = str.find_first_not_of(" \t"); if (pos!=string::npos) { str.erase(0, pos);