change failsafe wstring (char16) to string (char)

This commit is contained in:
Sem van der Hoeven
2023-05-29 10:56:17 +02:00
parent 437ea4f536
commit 641dd746c4
2 changed files with 2 additions and 2 deletions

View File

@@ -148,7 +148,7 @@ public:
*
* @param message the message indicating the cause of the failsafe
*/
void enable_failsafe(std::__cxx11::basic_string<char16_t> message)
void enable_failsafe(std::string message)
{
this->failsafe_enabled = true;
this->failsafe_request->message = message;

View File

@@ -1,2 +1,2 @@
bool enabled
wstring msg
string msg