summaryrefslogtreecommitdiff
path: root/src/common/Database/MySQLConnection.h
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2020-12-07 19:21:55 +0100
committerGitHub <noreply@github.com>2020-12-07 19:21:55 +0100
commit1cf39b3d22ca22babda7cbc3f8efea10370b5700 (patch)
tree98be818100d5381a72af25f61d16b0cce86d15be /src/common/Database/MySQLConnection.h
parent0b8ec1f6eeef15be9798e4ebc038e44d7cd64feb (diff)
refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
Diffstat (limited to 'src/common/Database/MySQLConnection.h')
-rw-r--r--src/common/Database/MySQLConnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Database/MySQLConnection.h b/src/common/Database/MySQLConnection.h
index 164b29fcca..aabc714516 100644
--- a/src/common/Database/MySQLConnection.h
+++ b/src/common/Database/MySQLConnection.h
@@ -27,7 +27,7 @@ enum ConnectionFlags
struct MySQLConnectionInfo
{
- MySQLConnectionInfo() { }
+ MySQLConnectionInfo() = default;
MySQLConnectionInfo(const std::string& infoString)
{
Tokenizer tokens(infoString, ';');