Skip to content

Commit 35c7bfa

Browse files
committed
更新版权声明
1 parent 11c7030 commit 35c7bfa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/sqlite/sqlite.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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
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:

sqlite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
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
1919
* Github: https://github.com/mikecovlee
2020
*/

0 commit comments

Comments
 (0)