Tagged Questions
The ambiguous tag has no wiki summary.
10
votes
2answers
153 views
Why can't GCC disambiguate multiple inherited functions (yet clang can)? [closed]
Possible Duplicate:
Why do multiple-inherited functions with same name but different signatures not get treated as overloaded functions?
This fails to compile in the indicated place with ...
10
votes
5answers
2k views
Avoiding implicit def ambiguity in Scala
I am trying to create an implicit conversion from any type (say, Int) to a String...
An implicit conversion to String means RichString methods (like reverse) are not available.
implicit def ...
9
votes
1answer
2k views
.Net 4.0 System.Web.Security.MembershipProvider ambiguous reference?
I have recently upgraded my BlogEngine.Net installation to 1.6 and .Net 4.0, however, I did not build BlogEngine.Core when I performed the upgrade. However, when I try to build the BlogEngine.Core ...
7
votes
2answers
528 views
In Java, why is the call foo() not ambigious given 2 varags methods foo(int… ints) and foo(Object… objects)?
If I declare just the 2 varargs methods as follows:
public void foo(String... strings) {
System.out.println("Foo with Strings");
}
and
public void foo(int... ints) {
...
6
votes
2answers
98 views
Why does implementing this generic interface create an ambiguous reference?
Let's say I have the following:
public interface Filter<E> {
public boolean accept(E obj);
}
and
import java.io.File;
import java.io.FilenameFilter;
public abstract class ...
6
votes
3answers
204 views
c++ conversion operator overloading, enums, ints and chars
When I try to compile (with gcc 4.3.4) this code snippet:
enum SimpleEnum {
ONEVALUE
};
void myFunc(int a) {
}
void myFunc(char ch) {
}
struct MyClass {
operator int() const { return 0; };
...
5
votes
2answers
167 views
Why is this rvalue call ambiguous?
Why is this rvalue call ambiguous? I can have AA and AA& and the compiler will know to use AA&. But when i add in the third option i get an error. Obviously AA&& is a better overload ...
4
votes
2answers
53 views
C# Dynamic Function AmbigiousMatchException?
I'm getting an AmbigiousMatchException for a function calling Type.GetMethod() even though everything looks pretty much correct.
public partial class IBaseEvent
{
private Dictionary<int, ...
4
votes
1answer
121 views
Detecting ambiguous options with Getopt::Long
Is there an easy way to detect ambiguous options with the Perl module Getopt::Long?
For example:
#!/usr/bin/env perl
# test ambiguous options
use Getopt::Long;
my $hostname = 'localhost';
...
4
votes
1answer
404 views
Ambiguous C++ compiler error
The following bit of code fails to compile. The error seems to be some kind of ambigous call to the merge routine. My understanding is that STL has a merge routine found in the std namespace, but as ...
4
votes
2answers
763 views
ICollection / ICollection<T> ambiguity problem
Just want to make simple extension for syntactic sygar :
public static bool IsNotEmpty(this ICollection obj)
{
return ((obj != null)
&& (obj.Count > 0));
}
public static bool ...
4
votes
2answers
3k views
BC30560: 'default_aspx' is ambiguous in the namespace 'ASP'
When I compiled my latest asp.net program and trying to run on the test server, I am getting this error
Line 46: Dim dependencies() As String
Line 47: ...
3
votes
3answers
45 views
Ambiguous column in MySQL even with Alias
I have the following MySQL:
select `car`.`ID` AS `ID`,
`title`,`text`
from `car`
LEFT JOIN `truck` as bigcar ON bigcar.`ID` = `car`.`truckID`
WHERE `ID` ='1';
For some reason I'm ...
3
votes
2answers
161 views
Is there a warning free template function to convert basic types to string
I want to provide a templated function that converts most basic types to string.
The best I have come up with so far is the following:
template<typename T> inline std::string anyToString(const ...
3
votes
6answers
328 views
Ambiguous class name
If have a new project (ProjNew ) where I want to put several classes that are on other project (ProjOld).
The problem is I want to maintain the old classes marked with Obsolete to avoid running all ...
3
votes
1answer
654 views
WCF with multiple services and namespace issues
I have created a number of WCF Services, for arguments sake they are called Service1 and Service2.
Both of the services return (at some point, possibly through a relationship inside an object) a ...
2
votes
1answer
89 views
Python - very ambiguous error message
I'm working on a large scale software system written in Python right now, which includes multiple modules. I was wondering what I should do about this, if anyone could make any sense of this error ...
2
votes
1answer
128 views
Ambiguous type in a simple statement Haskell
I want simply add 3.5 + floor 3.5 but this error occur:
Ambiguous type variable 't' in constraints:
'Fractional t'
arising from the literal '3.5'...
'Integral t'
...
2
votes
2answers
189 views
Haskell ambiguous type
findMult lst n = [x | x <- lst, x `mod` n == 0]
primes num =
let n = [2..num]
x = ceiling (sqrt num)
nsqrt = [2..x]
not_prime = map (findMult n) nsqrt
in diff2 n ...
2
votes
4answers
407 views
Color(int, int, int) vs Color(float, float, float) ambiguous call
How can I resolve the ambiguous call between these two in C++?
Color(int, int, int)
Color(float, float, float)
It is both ambiguous when the values are hardcoded i.e. Color(1, 2, 3) and when they ...
2
votes
6answers
2k 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 ...
2
votes
5answers
2k views
C# Ambiguous call in DirectSound
I'm trying to use DirectSound to capture sound from a microphone. Here's my code:
using Microsoft.DirectX.DirectSound;
public MicrophoneSensor()
{
CaptureBufferDescription ...
1
vote
1answer
67 views
Ambiguous Oracle Result Set
I am working with some legacy SQL that is not really well written. There are ambiguous selects that seem to produce the results we expect for the most part, but not always.
Here's a simplified ...
1
vote
1answer
71 views
SQLAlchemy and Ambiguous Column name
Ive had a good search on google but I cant seem to find an answer to this error in my case.
Im not making any joins, Im literally just trying to get all from this table.
All of the other queries ...
1
vote
2answers
108 views
Class Instances and ambiguous occurence in Haskell
Here is the code:
data Tree t = NilT
| Node t (Tree t) (Tree t)
instance Show (Tree t) where
show NilT = ""
show Node t l r = (show t) ++ ", " ++ (show l) ++ ", " ++ (show r)
how ...
1
vote
1answer
124 views
ambiguous error: template C++
I've tried almost everything imaginable (apart from the right thing of course), but still can't see why I'm getting an ambiguous error. I am fairly certain it's something really silly but I just can't ...
1
vote
1answer
162 views
Ambiguous action methods in MVC 2
I'm having some problems with ambiguous action methods in MVC 2. I've tried implementing the solution found here: ASP.NET MVC ambiguous action methods, but that simply gives me a "The resource cannot ...
1
vote
1answer
256 views
How to resolve ambiguous operator in ISO C++
I'm pretty much out of ideas now with porting a big bunch of old C++ code from MS Visual C++ 7.0 to iOS 4 iPhone g++ 4.2.1 compiler. I get some ambiquity errors compiling this:
complex_d* cp;
...
1
vote
0answers
205 views
X is ambiguous between declarations in Modules but there is only one
So, I'm working in VS 2k5 and I've been copying some code from another project into this one. It's a VB Web Application. The code compiles, but when it tries to load the first page I get this:
...
1
vote
4answers
383 views
C++/CLI - Ambiguous symbol of a namespace and a class
I try to compile a C++/CLI file, that is including a header file (native, third-party) wherein a class "Foo" is defined. Furthermore I am using a C# dll via #using "Bar.dll" wherein a namespace "Foo" ...
1
vote
2answers
190 views
If the grammar is ambiguous then there exists exactly one handle for each sentential form.?
there can be two productions from which we can do the reduction. After giving precedence and associations as required there will be one handle only.so is this statement true??
1
vote
3answers
448 views
Operator = is ambiguous (C++)
I have the following in a for loop and the compiler says 'operator = is ambiguous'. Not sure how to solve this issue, can anyone help?
rootelement = document->getDocumentElement();
...
1
vote
4answers
365 views
Why do I get an ambiguous error when calling a Constructor inside of the same class in Java?
I can't figure out why i'm getting an ambiguous error. This is a sample code of what I have:
public class MyString{
//Data:
private char[] theString;
//constructors:
public ...
1
vote
1answer
190 views
Antlr (lexer): matching the right token
In my Antlr3 grammar, I have several "overlapping" lexer rules, like this:
NAT: ('0' .. '9')+ ;
INT: ('+' | '-')? ('0' .. '9')+ ;
BITVECTOR: ('0' | '1')* ;
Although tokens like 100110 and 123 can ...
1
vote
1answer
201 views
Scala 2.7 : reference is ambiguous (imported twice)
In Scala 2.7, I want to use a method as a parameter of another method of the same class.
I have a class and objects which are companions:
class mM(var elem:Matrix){
//apply a function on a ...
1
vote
1answer
334 views
ReferenceError: Error #1008 Class is ambiguous
I have a As3 file and I get a runtime error:
ReferenceError: **Error #1008**: Tooltip is ambiguous; Found more than one matching binding.
I have a class named Tooltip and also a symbol in library ...
1
vote
4answers
674 views
C# Ambiguous calls - Different return type
I have 2 extension methods that convert a MongoDB document to an entity/object.
public static ProductTemplate Convert(this Document document)
{
return null;
}
public static Product Convert(this ...
1
vote
2answers
1k views
Why is this error: reference to ‘statusBar’ is ambiguous.. coming? Is this a bug?
I created a QMainWindow using QT Designer.
As we know, it has statusBar by default.
By default, QT Designer gave its objectname as "statusBar".
Now, when I tried to call like:-
...
1
vote
1answer
2k views
request for member `…' is ambiguous in g++
I'm getting the following compile error in one of my classes, using gcc 3.4.5 (mingw):
src/ModelTester/CModelTesterGui.cpp:1308: error: request for member `addListener' is ambiguous
...
1
vote
11answers
483 views
What's an example of a well designed network server?
I'm interested in looking at architectures for extensible network serving applications. I'm not too interested in the protocol, or the language used, more in the elegance and extensibility of the ...
0
votes
1answer
107 views
Column ambiguously defined in subquery using rownums
I have to execute a SQL made from some users and show its results. An example SQL could be this:
SELECT t1.*, t2.* FROM table1 t1, table2 t2, where table1.id = table2.id
This SQL works fine as it ...
0
votes
2answers
121 views
QObject inheritance Ambiguous Base
I have a simple class that stops and starts a timer when my program gains and loses focus but it gives the error tha QObject is Ambiguous base of MyApp on every signal-slot connection.
Here is the ...
0
votes
0answers
64 views
multiple ambiguous reference fix
I have written a bunch of code using Path.Combine() method in the System.IO namespace, but now I want to transfer it over to WPF, so I'm getting an ambiguous reference between System.IO and ...
0
votes
1answer
180 views
Error when creating bean with type java.io.File [Ambiguous constructor argument types]
I have the following spring bean configuration
<bean id="fileBean" class="java.io.File">
<constructor-arg type="java.lang.String"
...
0
votes
1answer
81 views
Ambiguous type using parameterized types Haskell
I have a pretty straightforward function that takes a parameterized data type and returns the same type:
{-# LANGUAGE ScopedTypeVariables #-}
class IntegerAsType a where
value :: a -> Integer
...
0
votes
2answers
27 views
mysql inner join ambigious USING() field but not always
I've recently changed servers and although I'm still apparently using MySQL, I don't think it's the same version or set up in the same way that I'm used to.
The most pronounced effect is on my JOIN ...
0
votes
1answer
92 views
Ambiguous pywintypes.error when calling win32gui.GetPixel()
So here's the line of code triggering the error:
win32gui.GetPixel(win32gui.GetDC(self._hwndGame), x, y)
Here's the error:
pywintypes.error: (0, 'GetPixel', 'No error message is available')
I'm ...
0
votes
2answers
124 views
'Class' is ambiguous
I am trying to build my solution and am getting a "'VirtualMarchRegistrationDAL' is ambiguous" error. I have yet to find anything helpful on any forums. Here is the code that is being used:
Private ...
0
votes
2answers
362 views
Sqlite Query Error: Ambiguous Column Name?
I am running the following query on an sqlite3 database:
SELECT file.id AS fileID, file.path
FROM file
JOIN (SELECT tag_file_map.fileID,tag.tagname
FROM tag_file_map, tag JOIN tag ON ...
0
votes
0answers
183 views
XML Commenting - ambiguous reference “NotifyCollectionChangedEventArgs” in see cref tag?
Basically, I have the following: <see cref="NotifyCollectionChangedEventArgs"/> see tag in my XML Comments. ReSharper states that it is an ambiguous reference and suggests for me to give it as ...