mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 12:51:13 +08:00
Remove structure sqlpp::iterator_category.
This commit is contained in:
parent
28dac3a3d3
commit
f983abcfc0
@ -32,12 +32,6 @@
|
|||||||
|
|
||||||
namespace sqlpp
|
namespace sqlpp
|
||||||
{
|
{
|
||||||
template <typename>
|
|
||||||
struct iterator_category
|
|
||||||
{
|
|
||||||
using type = std::input_iterator_tag;
|
|
||||||
};
|
|
||||||
|
|
||||||
namespace detail
|
namespace detail
|
||||||
{
|
{
|
||||||
template<class DbResult, class = void>
|
template<class DbResult, class = void>
|
||||||
@ -87,7 +81,7 @@ namespace sqlpp
|
|||||||
class iterator
|
class iterator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
using iterator_category = typename iterator_category<DbResult>::type;
|
using iterator_category = std::input_iterator_tag;
|
||||||
using value_type = result_row_t;
|
using value_type = result_row_t;
|
||||||
using pointer = const result_row_t*;
|
using pointer = const result_row_t*;
|
||||||
using reference = const result_row_t&;
|
using reference = const result_row_t&;
|
||||||
|
Loading…
Reference in New Issue
Block a user