summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-02-04 20:30:19 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-04 20:30:19 +0000
commit6677ca610d2dede2bf0faefd93c60c6f4fdc5d75 (patch)
tree20a6d594bc379ed8be3eced75689cbdc360fd7d0
parentColumns are unique, not shared (diff)
downloadlibdbpp-6677ca610d2dede2bf0faefd93c60c6f4fdc5d75.tar.bz2
libdbpp-6677ca610d2dede2bf0faefd93c60c6f4fdc5d75.tar.xz
libdbpp-6677ca610d2dede2bf0faefd93c60c6f4fdc5d75.zip
Remove unrequired defaulted function
-rw-r--r--libdbpp/modifycommand.cpp2
-rw-r--r--libdbpp/modifycommand.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/libdbpp/modifycommand.cpp b/libdbpp/modifycommand.cpp
index b3bd36d..7fd2685 100644
--- a/libdbpp/modifycommand.cpp
+++ b/libdbpp/modifycommand.cpp
@@ -5,8 +5,6 @@ DB::ModifyCommand::ModifyCommand(const std::string & s) :
{
}
-DB::ModifyCommand::~ModifyCommand() = default;
-
DB::NoRowsAffected::NoRowsAffected()
{
}
diff --git a/libdbpp/modifycommand.h b/libdbpp/modifycommand.h
index e0aa42f..c05792c 100644
--- a/libdbpp/modifycommand.h
+++ b/libdbpp/modifycommand.h
@@ -17,7 +17,6 @@ namespace DB {
public:
/// Creates a new command from the given SQL.
ModifyCommand(const std::string & sql);
- ~ModifyCommand();
/// Execute the command and return effected row count
virtual unsigned int execute(bool allowNoChange = true) = 0;