diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-03 19:17:02 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 00:39:05 +0000 |
commit | eb81f22a5b1df18c9844893c55f57762148f2bd0 (patch) | |
tree | fb178d90cac536562faeabd2a57f720d70cc0530 /modules/extra/m_mysql.cpp | |
parent | a31a7f5a6ce3f47716a9313d232c2a40955fd1e1 (diff) |
Modernize CXXFLAGS on Unix and enable -Werror on CI.
Also clear up warnings that this exposed.
Diffstat (limited to 'modules/extra/m_mysql.cpp')
-rw-r--r-- | modules/extra/m_mysql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/m_mysql.cpp b/modules/extra/m_mysql.cpp index 3b4b0ea3f..96f346b53 100644 --- a/modules/extra/m_mysql.cpp +++ b/modules/extra/m_mysql.cpp @@ -151,7 +151,7 @@ class MySQLService : public Provider Anope::string BuildQuery(const Query &q); - Anope::string FromUnixtime(time_t); + Anope::string FromUnixtime(time_t) override; }; /** The SQL thread used to execute queries |