Navigation Menu

Skip to content

Commit

Permalink
Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sannis committed Apr 2, 2010
1 parent 73c75e5 commit 5cb704a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mysql_bindings_result.h
Expand Up @@ -27,7 +27,7 @@ class MysqlConn::MysqlResult : public node::EventEmitter {
MysqlResult();

explicit MysqlResult(MYSQL_RES *my_result):
_res(my_result), EventEmitter() {}
EventEmitter(), _res(my_result) {}

~MysqlResult();

Expand Down
2 changes: 1 addition & 1 deletion src/mysql_bindings_statement.h
Expand Up @@ -27,7 +27,7 @@ class MysqlConn::MysqlStatement : public node::EventEmitter {
MysqlStatement();

explicit MysqlStatement(MYSQL_STMT *my_stmt):
_stmt(my_stmt), EventEmitter() {}
EventEmitter(), _stmt(my_stmt) {}

~MysqlStatement();

Expand Down

0 comments on commit 5cb704a

Please sign in to comment.