diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/modules/sql.h | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/modules/sql.h')
| -rw-r--r-- | include/modules/sql.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/modules/sql.h b/include/modules/sql.h index 3447dc8e4..291a64012 100644 --- a/include/modules/sql.h +++ b/include/modules/sql.h @@ -72,7 +72,7 @@ namespace SQL class SQL::Result : public Cullable { - public: +public: /** * Return the number of rows in the result. * @@ -111,11 +111,11 @@ class SQL::Result */ class SQL::Error final { - private: +private: /** The custom error message if one has been specified. */ const std::string message; - public: +public: /** The code which represents this error. */ const ErrorCode code; @@ -170,14 +170,14 @@ class SQL::Error final class SQL::Query : public Cullable { - protected: +protected: /** Creates a new SQL query. */ Query(Module* Creator) : creator(Creator) { } - public: +public: const ModuleRef creator; /* Destroys this Query instance. */ @@ -200,11 +200,11 @@ class SQL::Query class SQL::Provider : public DataProvider { - private: +private: /** The name of the database tag in the config. */ const std::string dbid; - public: +public: Provider(Module* Creator, const std::string& Name) : DataProvider(Creator, "SQL/" + Name) { |
