Tagged Questions
2
votes
2answers
568 views
C++ templates and ambiguity problem
I have a subset of a pointer class that look like:
template <typename T>
struct Pointer
{
Pointer();
Pointer(T *const x);
Pointer(const Pointer &x);
template ...