Hello. I found that MSVC 6.0 and .NET has bugs with
next structure:
template <class CollectionContent>
struct sequence
{
template <class InputIterator, class Archive>
size_t xml_write(InputIterator first,
InputIterator last, Archive& archive);
template <class Container, class InputIterator,
class Archive>
void xml_read(Container& container,
InputIterator insert, size_t len, Archive& archive);
template <class InputIterator, class Archive>
size_t write(InputIterator first, InputIterator
last, Archive& archive);
template <class Container, class InputIterator,
class Archive>
void read(Container& container, InputIterator
insert, size_t len, Archive& archive);
};
The idea I think such that you use "Microsoft
incompatible templates :)"
Logged In: NO
I comment such structures in algorithms.hpp that have next
structure
template<...>
struct ...
template <...>
function
Samples work well