All errors are found in util.h and user.h and is related with next code:
static const size_t bucket_size = 4;
static const size_t min_buckets = 8;
each line where this code stands in the header files produces an error-code
E:\Project C\dc++ 0.262\client\Util.h(48 ) : error C2258: illegal pure syntax, must be '= 0'
E:\Project C\dc++ 0.262\client\Util.h(52) : see reference to class template instantiation 'PointerHash<T>' being compiled
E:\Project C\dc++ 0.262\client\Util.h(48 ) : error C2252: 'bucket_size' : pure specifier can only be specified for functions
E:\Project C\dc++ 0.262\client\Util.h(52) : see reference to class template instantiation 'PointerHash<T>' being compiled
Each error is in a different line-number but it returns to the same type of code
Does any1 know how to solve this problem...?
Thx in advance