Tagged Questions
2
votes
2answers
77 views
Why am I getting ambiguous call for the following functions?
Consider the following:
template <typename T>
class testString
{
public:
typedef T* iterator;
void insert(iterator aPos, size_t numChars, T aChar);
testString<T>& ...
2
votes
2answers
550 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 ...
0
votes
3answers
203 views
How do I fix an “ambiguous” function call?
I'm working on a C++ program for class, and my compiler is complaining about an "ambiguous" function call. I suspect that this is because there are several functions defined with different parameters. ...