mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 07:19:34 -06:00
drivers swapped specifiers to constexpr static
This commit is contained in:
@@ -96,9 +96,9 @@ void
|
||||
MySqlDriverPrivate::mysqlSetCharacterSet(const QString &host, const bool before) const
|
||||
{
|
||||
#ifndef MARIADB_VERSION_ID
|
||||
static constexpr auto isMaria = false;
|
||||
constexpr static auto isMaria = false;
|
||||
#else
|
||||
static constexpr auto isMaria = true;
|
||||
constexpr static auto isMaria = true;
|
||||
#endif
|
||||
|
||||
for (const auto *const characterSetName : DefaultCharacterSets)
|
||||
|
||||
Reference in New Issue
Block a user