From ba2c82e2f53bee8db583a54b0020ac3620a32d9c Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 3 Jan 2022 19:33:21 +0000 Subject: Fix some minor issues discovered whilst working on 2.1. --- include/modules/sql.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/modules/sql.h') diff --git a/include/modules/sql.h b/include/modules/sql.h index e2e01e20e..c9849a8a5 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; } -- cgit