diff options
author | DDuarte <dnpd.dd@gmail.com> | 2015-07-22 23:24:56 +0100 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2015-07-22 23:24:56 +0100 |
commit | 7d9843c380cf00f38ad0c5bc75fd387e50ee11da (patch) | |
tree | 780ad3e8790466ccdf4ef4a8b37ea6a5ad12bd15 /src/server/shared/Database/AdhocStatement.h | |
parent | 978a57f7b4f7ff465f84b044062859d9ef2ba0f1 (diff) |
Core/Misc: Add a few consts to methods
Diffstat (limited to 'src/server/shared/Database/AdhocStatement.h')
-rw-r--r-- | src/server/shared/Database/AdhocStatement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Database/AdhocStatement.h b/src/server/shared/Database/AdhocStatement.h index 8195d9add98..c449e0f6e59 100644 --- a/src/server/shared/Database/AdhocStatement.h +++ b/src/server/shared/Database/AdhocStatement.h @@ -32,7 +32,7 @@ class BasicStatementTask : public SQLOperation ~BasicStatementTask(); bool Execute() override; - QueryResultFuture GetFuture() { return m_result->get_future(); } + QueryResultFuture GetFuture() const { return m_result->get_future(); } private: const char* m_sql; //- Raw query to be executed |