Ambiguous call is a situation, when compiler cannot deduce from the passed parameter types, which version of function or method shall it use.

learn more… | top users | synonyms

-1
votes
1answer
36 views

Ambiguous reference between 'Microsoft.Xna.Framework.Color' & 'System.Drawing'

I think this is a simple question to answer, but I still can't figure out a way to get past it. Basically, what I wanted, was to use a Bitmap object in my Xna game. So I went ahead and added ...
0
votes
1answer
46 views

Understanding how to solve ambiguous member requests in c++

How do I use a function in class A from class D without inheriting class A and (although I understand it's bad practise, I am not permitted to alter the inheritance at all) and not remove the ...
0
votes
2answers
25 views

JavaCC Ambiguities: How do I tell the parser to chose a certain match from the the list of “longer matches”?

For some input, the parser presents a "Possible kinds of longer matches : { <EXPRESSION>, <TEXT> }", but for some odd reason it chooses the wrong one. This is the source: SKIP : { " ...
3
votes
2answers
56 views

When defining the operator ==, null value returns “call is ambiguous”

I have custom classes Rational, Real, and Complex. In Complex I overload operators that allow me to compare a Complex and a Real, or a Complex and a Rational. It would be easy if I could define an ...
3
votes
3answers
189 views

Why doesn't the C# compiler get confused about methods that have default arguments? [duplicate]

Why doesn't the C# compiler get confused about methods that have default arguments? In the below code SayHello() may refer to: SayHello() SayHello(string arg1 = null) SayHello(string arg1 = null, ...
0
votes
1answer
63 views

how could I gain a class address from it's base in multiple-inheritance?

I used a third-part library in my company. In it, Some classes I need is defined like this: class A {}; class B : public A {}; class C : public A {}; class Foo : public B , public C , public A ...
0
votes
0answers
26 views

Ambiguous grammar in parse phase

I want to build compiler to my own language, I wrote the grammar and finished lexer phase my question in parse phase this part of my EBNF grammer Statement → Block | Assignment | ...
0
votes
3answers
55 views

Why does the compiler accept an ambiguous variables definitions?

I have such pretty little code: //example1 namespace { int a; } int a; main() { a++; return 0; } Of course, g++ 4.6.1 compiler can't compile it and outputs an error: ./temp.cpp: In ...
0
votes
0answers
30 views

SFINAE not working with private members

I have the following code: struct A { int x; }; class B { int x; public: int get_x() const { return x; } }; template< class T > auto foo(T const & t) -> ...
1
vote
1answer
65 views

Application exception issue

I can't run my application. What can I do to fix this issue? I'm using Net 3.5 for this project I get this exception: "Ambiguous type reference. A type named 'TypeExtension' occurs in at least two ...
4
votes
2answers
51 views

Ambigous call when a method has overloads for IDictionary and IDictionary<TKey, TValue>

When a method has two overloads, one accepting IDictionary and another accepting IDictionary<TKey, TValue>, passing new Dictionary<string, int>() to it is considered ambigous. However, if ...
0
votes
1answer
23 views

References Ambiguous (Depending on project location)

I have a very unusual problem. My project files for Visual Basic are in: C:\VB.Net\Projects When they are here I have the following problems: In an attempt to start playing around with the ...
2
votes
3answers
166 views

shell script ambiguous redirect

I am trying to create simple shell script which will identify difference between output of two text files. I am able to successfully run script when I redirect to file (i.e. > a and > b). What I am ...
2
votes
2answers
92 views

C++ strange ambiguous call to overloaded function [duplicate]

First of all, this question is purely of theoretical nature. I am not searching for a solution (I already know it), I am just searching for an explanation. The following code doesn't compile: struct ...
0
votes
1answer
186 views

Hibernate Criteria setMaxResults with Oracle 11G giving org.hibernate.exception.SQLGrammarException: ORA-00918: column ambiguously defined

We are using Hibernate 4.0 with JBoss 7 against an Oracle 11G database. The java pojo class has these two properties (in addition to others). Please note that the SalesPerson class has a ...
3
votes
2answers
148 views

T-SQL statement with SubSelect and Join - Ambiguous column name error

I've spent hours researching answers to what should be a very simple T-SQL statement. Here is the situation. I'm tyring to report over a help desk data base. I have one table (calllog) that ...
2
votes
1answer
73 views

Spring MVC: Ambiguous RequestMappings after moving to JavaConfig

After moving from XML setup to a JavaConfig setup many of our RequestMappings have broken and now return ambiguous method errors. Our methods rely on @PathVariable's with regular expressions to ...
1
vote
5answers
47 views

Ambiguous call functions in the class

How to get around? I do not want to have functions with different names. public class DataRowSafe { public String Get(String Column) { return String.Empty; } public int ...
3
votes
1answer
48 views

Ambiguous non-terminal in GLR

When GLR parser reduces some text to the same non-terminal in two ore more ways it merges parse subtrees. Rekers uses 'symbol nodes' for this. I this not each non-terminal could cause a merge. ...
0
votes
1answer
44 views

LALR grammar ambiguous

I have made a grammar for boolean and arithmetic expressions. I want to handle arithmetic expressions like: (1+5)+(-3) I'm done with that work: I can handle all the expressions I want. My ...
0
votes
0answers
128 views

ASP.NET MVC 4 Web Api AmbiguousMatchException

While working with ASP.NET MVC 4 Web Api: public class Base { public string Item { get; set; } } public class Derived : Base { new public int Item { get; set; } } public class ...
0
votes
0answers
29 views

can't createunambiguous grammar

Consider the example: BOOL --> BOOL BOP BOOL | UPO | EXP | ( BOOL ) | CONST CONST --> true | false | var BOP --> and | or UOP --> not EXP --> EXP COP EXP COP ...
1
vote
1answer
54 views

how to resolve ambiguous situation between same named function and class?

This code compiles without any issue if test is not called so I conclude that c++ allows to create class and function with the same name: class test {}; void test() {} int main() { test ...
1
vote
1answer
168 views

Ambiguous grammar

I am looking at the following grammar and I believe its Ambiguous at line 3, but not sure. <SL> → <S> <SL> → <SL> <S> <S> → i <B> <S> e <S> ...
1
vote
1answer
475 views

Git fatal ambiguous argument 'HEAD' both revision and file name use — to separate paths from revision like git […]--[…] [closed]

My git version is 1.8.0 mysysgit0 Remote repo on -linux server Local repo - Windows 7 When I try to commit my local changes it says fatal error below Git fatal ambiguous argument 'HEAD' both ...
1
vote
0answers
128 views

Converting ambiguous to unambigous grammar for arithmetic expressions

I'm attempting to come up with a non-ambiguous grammar for arithmetic expressions to make an Earley parser faster but I seem to be having trouble. This is the given ambiguous grammar S -> E | ...
0
votes
0answers
171 views

Resolve ambiguity resulting from multiple inheritance of classes which share a common template class

I am trying to create a base class which is a template class and accepts, as a templace, some class. This base class in the parent class of two other classes which are themselves the parents of the ...
1
vote
3answers
701 views

Querying the inner join of two tables with the same column name, Column 'exName' in field list is ambiguous

I am querying the inner join of three tables using the following query. Two of the tables have columns named "name1". I am getting the following error. Column 'exName' in field list is ambiguous ...
0
votes
1answer
49 views

Unittest inherit from target (SUT) with Dispose

I have found that it's significant easier to test a class if you inherit from it. consider this seudo example: public class Bizz { public void Do() { var obj = ExtenOutOfTest(); ...
0
votes
3answers
199 views

The call is ambiguous between the following methods or properties С#

While compiling my program (i compile it from MonoDevelop IDE) i receive an error: Error CS0121: The call is ambiguous between the following methods or properties: ...
1
vote
3answers
110 views

Import specific method signature in Scala

Is there a manner to import a specific method signature? def test() { lazy val log = LoggerFactory.getLogger("AndroidProxy") import log.{error, debug, info, trace} trace("This is a test") ...
2
votes
1answer
60 views

Why is multiply inheriting a method with different signatures ambiguous? [duplicate]

If I inherit a function with the same name but different signatures from different base classes, an attempt to call the function generates an error claiming the call is ambiguous. The same functions ...
-2
votes
2answers
53 views

Ambiguous recursive(?) overload call

How can I solve this? How can I point to the exact overload that I would like to use? int A() { if (Environment.TickCount == 666) return 0; else return ...
0
votes
0answers
58 views

i/ostream ambigous symbol rogue wave

I have C++ code with RogueWave which was compiled in IRIX 6.5 OS (UNIX) and I need to convert it such that it can compiled in Visual Studio 2010. However there is a problem with the stream objects - ...
2
votes
2answers
183 views

ISO C++ says that these are ambiguous,

I have to overload the shift operator " << " both for writing in console and to write on a binary file.. I am doing okay for the ostream overloading, while I am having some problem overloading ...
2
votes
2answers
199 views

Conversion Operator Overload - Function Ambiguity

I am trying to create interoperability between my Math library and some of the DirectX built in methods by creating overloaded conversion operators. Basically my structs need to convert themselves to ...
12
votes
1answer
333 views

call of overloaded <brace-enclosed initializer list> is ambiguous, how to deal with that?

I really don't understand this, I thought that compiler first executes what is in braces and then gives the result to the most appropriate function. Here it looks like it gives the function an ...
0
votes
1answer
106 views

Eclipse Indigo running on Java 7 does not show ambiguous references to methods

I have an application that used to run on Java 1.5. It compiled and ran well. Recently, I've decided to migrate to Java 1.7. When I compile the code with Maven (I updated the Java version in the ...
0
votes
0answers
119 views

How to reference two ambiguous methods

I have a problem when compiling the project : ambiguous reference that the two codes Image img = pictureBox1.Image.Crop(_selection); and pictureBox1.Image = img.Fit2PictureBox(pictureBox1); ...
0
votes
2answers
44 views

Preserving type across cascading insertion operation

I am trying to create a thin wrapper over an ostringstream instance which delegates all insertion operations to the enclosed ostringstream instance. The idea is to preserve type when doing cascading ...
1
vote
1answer
129 views

Call to function is ambiguous in C++. Candidate functions are the Prototype and the function itself

I am working through Stanford CS106B C++ assignments and I have a 'semantic issue' with an assignment. It seems as if the compiler cannot deduce whether the call is to a function or to the prototype ...
0
votes
3answers
118 views

Optional parameters together with an array of parameters

I have a logging interface which I extend with some helpful extension methods as to make it possible for me to pass in a format and a list of arguments to avoid having to use string format every time ...
0
votes
1answer
58 views

How do I make this simple grammar unambiguous?

Here is the ambiguous grammar for a simple DDC compiler in BNF form: <expr> ::= <term> | <expr> <op1> <expr> <term> ::= <decimal arg> | <term> ...
0
votes
1answer
89 views

Ambiguous layout on almost empty UIView for iPad

I'm trng to design a screen for iPad using interface builder. I have an empty view and I added an UIImageView as a wallpaper with 4 constraints: Leading Space to superview = 0 Trailing Space to ...
1
vote
1answer
418 views

CS0104: 'Scripts' is an ambiguous reference between 'System.Web.WebPages.Scripts' and 'System.Web.Optimization.Scripts'

My project is on MVC 4. In it I can't access any of scripts function like @Scripts.Render("~/bundles/modernizr") as Scripts is an ambigious reference between 'System.Web.WebPages.Scripts' and ...
0
votes
3answers
76 views

Ambiguous column query

I'm getting the "ambiguous column" error when running this query, but I'm having a hard time finding the cause: select bobooks.ID request, bobooks.TITLE, bobooks.AUTHOR, ...
1
vote
2answers
92 views

Explicitly disambiguating overloaded constructor in Java

I know that if I have an overloaded method in Java that can accept a parameter of several different types, and I want to pass null to the method, I need to explicitly cast it to one of the accepted ...
0
votes
1answer
308 views

Use of overloaded operator '>>' is ambiguous (with operand types 'istream' (aka 'basic_istream<char>') and 'MyIncreEx')

Here is the code and I don't seem to find what's wrong with it; I need to overload the << and >> operators, but I get the following error: Use of overloaded operator '>>' is ambiguous (with ...
0
votes
1answer
238 views

Reference to 'move' is ambiguous

In this particular part of code Xcode finds the following error: Reference to 'move' is ambiguous. Additionally, it says that: enumeration value 'move' not handled in switch; which is a nonsense since ...
1
vote
0answers
42 views

Ambiguous Method

I have this piece of code: public Paragraph paragraph() { Paragraph paragraph = new Paragraph(before.getLeading()); paragraph.add(before); if (numbered) { paragraph.addSpecial(new ...

1 2 3