Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Corrected a few minor things
Browse files Browse the repository at this point in the history
  • Loading branch information
trueqbit committed Feb 27, 2023
1 parent e3ab412 commit 0e266da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
4 changes: 1 addition & 3 deletions dev/column_result.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace sqlite_orm {
namespace internal {

/**
* Obains the result type of expressions that form the columns of a select statement.
* Obtains the result type of expressions that form the columns of a select statement.
*
* This is a proxy class used to define what type must have result type depending on select
* arguments (member pointer, aggregate functions, etc). Below you can see specializations
Expand All @@ -34,8 +34,6 @@ namespace sqlite_orm {
* DBOs - db_objects_tuple type
* T - C++ type
* SFINAE - sfinae argument
*
* Note (implementation): could be possibly implemented by utilizing column_expression_of_t
*/
template<class DBOs, class T, class SFINAE = void>
struct column_result_t;
Expand Down
3 changes: 0 additions & 3 deletions dev/serializer_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ namespace sqlite_orm {
serializer_context(const db_objects_type& dbObjects) : db_objects{dbObjects} {}
};

//template<class DBOs>
//serializer_context(const DBOs&) -> serializer_context<DBOs>;

template<class S>
struct serializer_context_builder {
using storage_type = S;
Expand Down
7 changes: 1 addition & 6 deletions include/sqlite_orm/sqlite_orm.h
Original file line number Diff line number Diff line change
Expand Up @@ -2760,9 +2760,6 @@ namespace sqlite_orm {
serializer_context(const db_objects_type& dbObjects) : db_objects{dbObjects} {}
};

//template<class DBOs>
//serializer_context(const DBOs&) -> serializer_context<DBOs>;

template<class S>
struct serializer_context_builder {
using storage_type = S;
Expand Down Expand Up @@ -10767,7 +10764,7 @@ namespace sqlite_orm {
namespace internal {

/**
* Obains the result type of expressions that form the columns of a select statement.
* Obtains the result type of expressions that form the columns of a select statement.
*
* This is a proxy class used to define what type must have result type depending on select
* arguments (member pointer, aggregate functions, etc). Below you can see specializations
Expand All @@ -10777,8 +10774,6 @@ namespace sqlite_orm {
* DBOs - db_objects_tuple type
* T - C++ type
* SFINAE - sfinae argument
*
* Note (implementation): could be possibly implemented by utilizing column_expression_of_t
*/
template<class DBOs, class T, class SFINAE = void>
struct column_result_t;
Expand Down

0 comments on commit 0e266da

Please sign in to comment.