MXS-421 Enable the turning on of events

This commit is contained in:
Johan Wikman
2018-06-14 14:09:52 +03:00
parent 6e3d3c0dcf
commit 6dd479104f
2 changed files with 33 additions and 13 deletions

View File

@ -92,7 +92,7 @@ const char* to_string(id_t id);
* @return True, if the string could be converted, false otherwise.
*/
bool from_string(id_t* pId, const char* zValue);
bool from_string(id_t* pId, const std::string& value)
inline bool from_string(id_t* pId, const std::string& value)
{
return from_string(pId, value.c_str());
}