diff options
author | Adam <adam@sigterm.info> | 2015-08-18 11:49:55 -0400 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2015-08-18 11:49:55 -0400 |
commit | ad3b14c5a20353e65a1b96ee2309a904bf4d5329 (patch) | |
tree | 4de83e16dd98be6a23e2a451fe3fd798de58c09a /include/modules/sql.h | |
parent | d79d8e2608e304760c42bdf87502e3bc51781b88 (diff) | |
parent | 7a15dd936f876882999a18117937d2eeef2e7dc0 (diff) |
Merge pull request #124 from SaberUK/2.1+warnings-errors
Fix various Clang warnings and errors.
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 826219b53..49c92ccd0 100644 --- a/include/modules/sql.h +++ b/include/modules/sql.h @@ -100,7 +100,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; } |