summaryrefslogtreecommitdiff
path: root/libmysqlpp/my-modifycommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libmysqlpp/my-modifycommand.cpp')
-rw-r--r--libmysqlpp/my-modifycommand.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/libmysqlpp/my-modifycommand.cpp b/libmysqlpp/my-modifycommand.cpp
index 083603f..7610a27 100644
--- a/libmysqlpp/my-modifycommand.cpp
+++ b/libmysqlpp/my-modifycommand.cpp
@@ -1,12 +1,10 @@
#include "my-modifycommand.h"
+#include "connection.h"
#include "my-error.h"
#include <cstdlib>
-#include "connection.h"
MySQL::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql) :
- DB::Command(sql),
- DB::ModifyCommand(sql),
- MySQL::Command(conn, sql)
+ DB::Command(sql), DB::ModifyCommand(sql), MySQL::Command(conn, sql)
{
}
@@ -23,4 +21,3 @@ MySQL::ModifyCommand::execute(bool anc)
}
return rows;
}
-