1
vote
2answers
80 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 …
1
vote
6answers
160 views
Java ambiguous type for method?
EDIT: This turned out not be a problem with the code at all, but with a bug in the Groovy Eclipse plugin (http://jira.codehaus.org/browse/GRECLIPSE-373)
Eclipse is giving me a weird error message …
5
votes
3answers
259 views
Question about ambiguous calls in C#.
Hi fellow coders,
I have a question that's not really a problem, but something that made me a little curious.
I have a class with two methods in it. One is a static method and the other one is an …
