fix for msvc ????

This commit is contained in:
Joachim Schöberl 2018-04-28 11:53:24 +02:00
parent 0b0616eee8
commit 8522cfdac5

View File

@ -66,6 +66,12 @@ namespace ngstd
int cnt = 0;
std::map<void*,int> ptr2nr;
std::vector<void*> nr2ptr;
// necessary for msvc ???
Archive & operator& (string* & ps)
{
return operator&<string> (ps);
}
template <typename T>
Archive & operator& (T *& p)