Skip to content

Commit

Permalink
fixed whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
fnc12 committed Jul 14, 2024
1 parent 8fadf9e commit d2f4014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dev/storage_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << streaming_identifier(tableName) << std::flush;
ss << ' ' << streaming_identifier(tableName) << std::flush;
perform_void_exec(db, ss.str());
}

Expand All @@ -940,7 +940,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << quote_identifier(indexName) << std::flush;
ss << ' ' << quote_identifier(indexName) << std::flush;
perform_void_exec(this->get_connection().get(), ss.str());
}

Expand All @@ -950,7 +950,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << quote_identifier(triggerName) << std::flush;
ss << ' ' << quote_identifier(triggerName) << std::flush;
perform_void_exec(this->get_connection().get(), ss.str());
}

Expand Down
6 changes: 3 additions & 3 deletions include/sqlite_orm/sqlite_orm.h
Original file line number Diff line number Diff line change
Expand Up @@ -18561,7 +18561,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << streaming_identifier(tableName) << std::flush;
ss << ' ' << streaming_identifier(tableName) << std::flush;
perform_void_exec(db, ss.str());
}

Expand All @@ -18571,7 +18571,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << quote_identifier(indexName) << std::flush;
ss << ' ' << quote_identifier(indexName) << std::flush;
perform_void_exec(this->get_connection().get(), ss.str());
}

Expand All @@ -18581,7 +18581,7 @@ namespace sqlite_orm {
if(ifExists) {
ss << " IF EXISTS";
}
ss << quote_identifier(triggerName) << std::flush;
ss << ' ' << quote_identifier(triggerName) << std::flush;
perform_void_exec(this->get_connection().get(), ss.str());
}

Expand Down

0 comments on commit d2f4014

Please sign in to comment.