From 6677ca610d2dede2bf0faefd93c60c6f4fdc5d75 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 4 Feb 2019 20:30:19 +0000 Subject: Remove unrequired defaulted function --- libdbpp/modifycommand.cpp | 2 -- libdbpp/modifycommand.h | 1 - 2 files changed, 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; -- cgit v1.2.3