From fff3c46902c0748898e4ec8f2daa2fed890581a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Fri, 17 Apr 2020 18:06:28 +0200 Subject: [PATCH] Added 'std' namespace to string arguments --- include/MySQL_Variables.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/MySQL_Variables.h b/include/MySQL_Variables.h index 1c25587af..674ee4220 100644 --- a/include/MySQL_Variables.h +++ b/include/MySQL_Variables.h @@ -46,8 +46,8 @@ public: bool verify_variable(MySQL_Session* session, int idx) const; bool update_variable(MySQL_Session* session, session_status status, int &_rc); bool on_connect_to_backend(MySQL_Connection *myconn); - bool parse_variable_boolean(MySQL_Session *sess, int idx, string &value1, bool& exit_after_SetParse, bool* lock_hostgroup); - bool parse_variable_number(MySQL_Session *sess, int idx, string &value1, bool& exit_after_SetParse, bool* lock_hostgroup); + bool parse_variable_boolean(MySQL_Session *sess, int idx, std::string &value1, bool& exit_after_SetParse, bool* lock_hostgroup); + bool parse_variable_number(MySQL_Session *sess, int idx, std::string &value1, bool& exit_after_SetParse, bool* lock_hostgroup); }; #endif // #ifndef MYSQL_VARIABLES_H