File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1515* You should have received a copy of the GNU Affero General Public License
1616* along with this program. If not, see <http://www.gnu.org/licenses/>.
1717*
18- * Copyright (C) 2017 Michael Lee(李登淳)
18+ * Copyright (C) 2018 Michael Lee(李登淳)
1919* Email: mikecovlee@163.com
2020* Github: https://github.com/mikecovlee
2121*/
@@ -75,7 +75,7 @@ namespace cs_impl {
7575 }
7676 };
7777
78- std::shared_ptr<db_holder> m_db;
78+ std::shared_ptr <db_holder> m_db;
7979 public:
8080 enum class data_type {
8181 integer, real, text
@@ -84,9 +84,9 @@ namespace cs_impl {
8484 class statement final {
8585 friend class sqlite ;
8686
87- std::shared_ptr<stmt_holder> m_stmt;
87+ std::shared_ptr <stmt_holder> m_stmt;
8888
89- explicit statement (const std::shared_ptr<db_holder> &db, const std::string &sql) : m_stmt(
89+ explicit statement (const std::shared_ptr <db_holder> &db, const std::string &sql) : m_stmt(
9090 std::make_shared<stmt_holder>(db->db, sql.c_str(), sql.size())) {}
9191
9292 public:
Original file line number Diff line number Diff line change 1414* You should have received a copy of the GNU Affero General Public License
1515* along with this program. If not, see <http://www.gnu.org/licenses/>.
1616*
17- * Copyright (C) 2017 Michael Lee(李登淳)
17+ * Copyright (C) 2018 Michael Lee(李登淳)
1818* Email: mikecovlee@163.com
1919* Github: https://github.com/mikecovlee
2020*/
You can’t perform that action at this time.
0 commit comments