Skip to content

Commit

Permalink
local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wsekta committed Jun 27, 2024
1 parent 80aa266 commit 8562c31
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
*build*/
.idea/
.vscode/
.cache/
vcpkg_installed/
html/
doxygen-awesome-css
doxygen-awesome-css
3 changes: 0 additions & 3 deletions include/orm-cxx/database.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#pragma once

#include <iostream>

#include "database/BackendType.hpp"
#include "database/binding/Binding.hpp"
#include "database/CommandGeneratorFactory.hpp"
#include "orm-cxx/utils/DisableExternalsWarning.hpp"
#include "query.hpp"
#include "soci/soci.h"

Expand Down
1 change: 0 additions & 1 deletion include/orm-cxx/model/ColumnInfo.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#pragma once

#include <regex>
#include <string>
#include <unordered_set>
#include <vector>
Expand Down
2 changes: 0 additions & 2 deletions include/orm-cxx/model/TableInfo.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#pragma once

#include <source_location>
#include <string>
#include <utility>

#include "orm-cxx/utils/DisableExternalsWarning.hpp"
#include "orm-cxx/utils/StringUtils.hpp"
Expand Down
1 change: 0 additions & 1 deletion include/orm-cxx/query.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#pragma once

#include <optional>
#include <string>

#include "model.hpp"
#include "query/QueryData.hpp"
Expand Down
2 changes: 0 additions & 2 deletions src/Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

#include <regex>

#include "soci/empty/soci-empty.h"

namespace
{
const std::regex sqliteRegex(R"(sqlite3\:\/\/.*)");
Expand Down

0 comments on commit 8562c31

Please sign in to comment.