From 9d4a5cf65f574436fa828e461859245185e4b1bd Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 3 Jun 2011 17:55:26 +0000 Subject: [PATCH] mysqlxx: fixed error. --- libs/libmysqlxx/include/mysqlxx/Connection.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/libmysqlxx/include/mysqlxx/Connection.h b/libs/libmysqlxx/include/mysqlxx/Connection.h index 79d6250832e..b3185f09c30 100644 --- a/libs/libmysqlxx/include/mysqlxx/Connection.h +++ b/libs/libmysqlxx/include/mysqlxx/Connection.h @@ -80,11 +80,11 @@ public: virtual ~Connection(); /// Для отложенной инициализации или для того, чтобы подключиться с другими параметрами. - virtual void connect(const char* db, - const char* server = 0, - const char* user = 0, - const char* password = 0, - unsigned int port = 0); + virtual void connect(const char * db, + const char * server, + const char * user, + const char * password, + unsigned int port); /// Было ли произведено соединение с MySQL. bool connected() const;