diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-04 00:39:07 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 00:39:34 +0000 |
commit | c9f93eeaedcf3e2d211fea7799ea529d76ebaad5 (patch) | |
tree | df31d369f0d28f05b6665a09f1542e09b11f9b56 /include/modules/sql.h | |
parent | db6b2225b186e6254443e00bc04b43664bf96d39 (diff) | |
parent | a93a7c87b61acc3e696c7bb1f56e9ba313dd6bfd (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'include/modules/sql.h')
-rw-r--r-- | include/modules/sql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/sql.h b/include/modules/sql.h index dbb21afcd..f7734a717 100644 --- a/include/modules/sql.h +++ b/include/modules/sql.h @@ -149,7 +149,7 @@ namespace SQL inline operator bool() const { return this->error.empty(); } - inline const unsigned int GetID() const { return this->id; } + inline unsigned int GetID() const { return this->id; } inline const Query &GetQuery() const { return this->query; } inline const Anope::string &GetError() const { return this->error; } |