Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/Wt/Dbo/collection.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ namespace Wt {
*/
iterator(const iterator& other);

/*! \brief Default constructor.
*/
iterator();

/*! \brief Destructor.
*/
~iterator();
Expand Down Expand Up @@ -190,7 +194,6 @@ namespace Wt {
private:
shared_impl *impl_;

iterator();
iterator(const collection<C>& collection, SqlStatement *statement);

void takeImpl();
Expand All @@ -216,6 +219,10 @@ namespace Wt {
*/
const_iterator(const const_iterator& other);

/*! \brief Default constructor.
*/
const_iterator();

/*! \brief Copy constructor.
*/
const_iterator(const typename collection<C>::iterator& other);
Expand Down Expand Up @@ -258,7 +265,6 @@ namespace Wt {
private:
typename collection<C>::iterator impl_;

const_iterator();
const_iterator(const collection<C>& collection, SqlStatement *statement);

friend class collection<C>;
Expand Down