Hello everyone,
I was wondering, while looking at the source files, why the
date_iterator doesn't provide an operator--() ???
I've added this in the "date_iterator.hpp" file :
//---------------------------------------------------------
date_itr_base& operator--()
{
current_ = current_ - get_offset(current_);
return *this;
}
//---------------------------------------------------------
I've rebuilt the library and done this little test :
//---------------------------------------------------------
#include <iostream>
#include