diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/extra/m_sqlite3.cpp | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/extra/m_sqlite3.cpp')
| -rw-r--r-- | src/modules/extra/m_sqlite3.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/extra/m_sqlite3.cpp b/src/modules/extra/m_sqlite3.cpp index 879585e2e..9459a84cf 100644 --- a/src/modules/extra/m_sqlite3.cpp +++ b/src/modules/extra/m_sqlite3.cpp @@ -49,7 +49,7 @@ typedef insp::flat_map<std::string, SQLConn*> ConnMap; class SQLite3Result final : public SQL::Result { - public: +public: int currentrow = 0; int rows = 0; std::vector<std::string> columns; @@ -100,7 +100,7 @@ class SQLConn final sqlite3* conn; std::shared_ptr<ConfigTag> config; - public: +public: SQLConn(Module* Parent, std::shared_ptr<ConfigTag> tag) : SQL::Provider(Parent, tag->getString("id")) , config(tag) @@ -231,10 +231,10 @@ class SQLConn final class ModuleSQLite3 final : public Module { - private: +private: ConnMap conns; - public: +public: ModuleSQLite3() : Module(VF_VENDOR, "Provides the ability for SQL modules to query a SQLite 3 database.") { |
