The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

Overload of QtGui.QLabel.setNum in PyQt4

In PyQt4, the slot QtGui.QLabel.setNum is overloaded. We have setNum( int ) and setNum( float ), linking to their c++ counterparts setNum( int) and setNum( double). I would like to connect a ...
5
votes
1answer
103 views

Why aren't these overloads ambiguous?

The following code compiles fine with gcc and clang. template <typename T> struct identity { typedef T type; }; template <typename T> void foo(typename identity<T>::type); ...
3
votes
1answer
69 views

Generic method overloading and precedence

I have two overloaded generic methods: T Foo<T>(T t) { Console.WriteLine("T"); return t; } T Foo<T>(int i) { Console.WriteLine("int"); return default(T); } When I try to call Foo as ...
14
votes
2answers
141 views

Different casting operators used by different compilers

The following C++ program compiles without warnings in all compilers I have tried (gcc 4.6.3, llvm 3.0, icc 13.1.1, SolarisStudio 12.1/12.3): struct CClass { template<class T> operator T() ...
16
votes
1answer
184 views

Why does the compiler find my function if is not yet declared?

Contrary to my expectations, this program works: #include <iostream> namespace a { struct item{}; } namespace b { struct item{}; } template<typename T> void func(T t) { do_func(t); } ...
4
votes
1answer
106 views

Ambiguous invocation match confusion

The following code throws "Ambiguous invocation match" at compile time: class ABC{} class DEF{} class Program { static void Main(string[] args) { Debug.WriteLine(func(null)); } ...
0
votes
1answer
84 views

VB.net Option Strict, listview.items.add(itm.clone) Overload

In VB.net (2012) I have the following code: For Each itm As ListViewItem In Me.lvCustomers If CDbl(itm.Tag) <> customer.Id Then Me.lvMerges.Items.Add(itm.Clone) Next With Option Strict On ...
2
votes
1answer
88 views

c++ operator overloaded argument vs normal argument

I have a function template (c++) template<typename T> void print_to_default_file(T &obj, ADDON addon = "") and a overloaded function template<typename T> void ...
21
votes
1answer
222 views

Ambiguity involving templated conversion operator and implicit copy constructor

clang and gcc differ in behaviour for the following code: struct foo { foo(int); }; struct waldo { template <typename T> operator T(); }; int main() { waldo w; foo f{w}; } ...
16
votes
1answer
326 views

Compiler thinks that “A(A&)” accepts rvalues for a moment?

I have this code struct A { A(); A(A&); }; struct B { B(const A&); }; void f(A); void f(B); int main() { f(A()); } To my surprise this fails with GCC and Clang. Clang says for ...
5
votes
1answer
135 views

Unexpected overload resolution with default function template parameter

I am experiencing an overload resolution behaviour that seems very unexpected. The following code is rejected with an ambiguity error by both gcc and clang: template <typename T> struct A { ...
5
votes
1answer
230 views

C++11: Universal executor

I would to know how get this code compiles: // test3.cpp ...
7
votes
2answers
277 views

“Manual” signature overload resolution

I want to make a std::function like object that can handle storing more than one overload. Syntax sort of like this: my_function< int(double, int), double(double, double), char(int, int) >. ...
0
votes
3answers
150 views

A generic function to accept both reference types and nullable types to accomodate the “as” keyword possible?

This is pure curiosity/challenge, no practical importance at all. So I'm not looking for alternate solutions that get the job done. From this question Most efficient way to check for DBNull and then ...
6
votes
2answers
250 views

Marking function as virtual causes compiler error with unique_ptr

I have a templated class that wraps a vector. I'm trying to store unique_ptrs in this class, and it works fine. However, when I mark the void add(const T& elem) function as virtual, my compiler ...
1
vote
2answers
107 views

Overload resolution when applying operator | to enums of distinct types

After reading the recent question Operations between different enum types are allowed in another enum declaration but not elsewhere I've come up with this example: enum Alpha : long { ...
3
votes
1answer
210 views

ambiguous overload for ‘operator=’ with c++11 std::move and copy and swap idiom

I am getting the following error: [matt ~] g++ -std=c++11 main.cpp -DCOPY_AND_SWAP && ./a.out main.cpp: In function ‘int main(int, const char* const*)’: main.cpp:101:24: error: ambiguous ...
2
votes
2answers
136 views

Get best matching overload from set of overloads

Let's say I have a class as follows: public class AcceptMethods { public int Accept(string s, int k = 1) { return 1; } public int Accept(object s) { return 2; ...
8
votes
3answers
191 views

Incorrect overload resolution for 2-argument functions

Let's take the following example program: #include <cmath> namespace half_float { template<typename T> struct half_expr {}; struct half : half_expr<half> { ...
17
votes
3answers
353 views

Why does a value of an enum with a fixed underlying type of char resolve to fct(int) instead of fct(char)?

This problem came up when answering this question about overload resolution with enums. While the case for long long was definitely a bug in MSVC2012NovCTP (according to the standard text and a test ...
5
votes
1answer
102 views

variadic list vs single template parameter: what does the standard say?

Consider the following code: #include <iostream> #include <type_traits> // Variadic version template<class... Variadic> void f(const Variadic&... variadic) { ...
1
vote
2answers
89 views

Non virtual method resolution - why is this happening

My understanding (in C#) of how non-virtual methods are resolved is that it is dependent upon the type of the variable (and not the type of instance). Take a look at the code below. class Program { ...
3
votes
1answer
86 views

What are the rules of precedence in resolving the method overloading in C#?

I'm writing a serializer in which I want to make use of method overloads extensively, to serialize objects of types deriving from IEnumerable<T>, IDictionary<K,V> and so on. I also intend ...
11
votes
1answer
175 views

Method resolution issue with default parameters and generics

Using .NET 4, I am confused by the inability of the compiler to resolve the first method call in the sample below. using System; namespace MethodResolutionTest { class Program { ...
5
votes
2answers
104 views

can compiler tell me which overloaded or template function it chose?

Specifically using g++ on linux, is there a way to determine which overloaded or template function was chosen for a particular statement? More specifically, I don't assume that I necessarily know ...
2
votes
1answer
31 views

Template for non-builtins, overload for builtins

I am providing a library that supports a function bar(). What it does when you pass in a scalar value (like a double, int, whatever) is different from what happens if you pass in something that is not ...
5
votes
1answer
64 views

Curious overload resolution when using a naked null literal with user-defined operators

(The "user-defined" in the title refers to the fact that addition and subtraction of TimeSpan and DateTime are not a part of the C# standard. They are defined in the BCL.) Playing around with lifted ...
1
vote
1answer
120 views

Seemingly ambiguous template function overloads

The original problem I tried to solve when stumbled upon this was to select parse_impl version: if the parser (of type U) provides a field named "skp", use that field; if not, use a default value. ...
0
votes
1answer
115 views

How to perform overload resolution with generics programatically

I have a number of MethodBase instances referencing different open generic methods (expected), e.g. representing the following methods: T Foo<T>(T nevermind, T other); T Foo<T>(string ...
3
votes
2answers
67 views

Forcing a preference for an overload in class definition?

I have a generic class. It has 2 constructors. Those are widely used in my organization's codebase. class MyClass<T> { MyClass() { ... } MyClass(T defaultValue) { ... } } I would like to ...
4
votes
1answer
332 views

How does Delphi resolve overloaded functions with Pointer(typeless one) parameters?

Below are few overloaded functions. Try to guess which function of those would get called. program Project2; {$APPTYPE CONSOLE} uses Types, SysUtils; procedure Some(const Buf); overload; ...
6
votes
4answers
133 views

Overload resolution oddity

Not sure if this is C# 4+ specific, but just noticed this. Consider the following classes: class Base { protected void Foo(object bar, DayOfWeek day) { } } class Program : Base { protected ...
9
votes
2answers
117 views

How do function objects affect overload resolution?

Are function objects treated differently from regular functions during overload resolution? If so, how? I have run into the following case where replacing a function with an equivalently-callable ...
0
votes
1answer
66 views

Trouble With Overload Resolution

Id like to say that there's a ton of C++ Overloading questions already on SO, but after an hour of looking at them and other posts on forums and newsgroups, I'm still stumped. Background I've ...
12
votes
1answer
226 views

Overload resolution behaviour difference between GCC and clang (SFINAE)

GCC accepts the following code: template <typename T> struct meta { typedef typename T::type type; }; struct S {}; template <typename T> typename meta<T>::type foo(T, S); int ...
5
votes
1answer
107 views

Lambda conversions with unclear return type and overload resolution

If I have a lambda such as () => { throw new Exception(); }, it's unclear whether it has a return type or not. Because of this, it can be (implicitly) converted to both Action and ...
1
vote
5answers
142 views

why these overloaded function calls is ambiguous?

Why this overloaded function calls is ambiguous?? with the compile error: call of overloaded 'test(long int)' is ambiguous,candidates are: void test(A)| ...
6
votes
1answer
462 views

How does method overload resolution work (LINQ Where extension method)?

If I have a variable of type IQueryable<T> I have four extension methods for Where in namespace Systm.Linq available: public static IQueryable<T> Where<T>(this IQueryable<T> ...
7
votes
2answers
328 views

Why are const qualifiers in function arguments used for overloading resolution? [duplicate]

Possible Duplicate: Functions with const arguments and Overloading I am pretty confused by the overloading and const declaration rules. Here are two things that puzzle me maybe you can help ...
3
votes
2answers
216 views

Resolving a member name at runtime

Given a type, a name and a signature, how can I do a member lookup of the member with name name and signature signature using the C# rules of 7.4 (the 7.4 is the chapter number from the C# Language ...
5
votes
3answers
323 views

How does the operator overload resolution work within namespaces?

I found a strange behaviour of C++ resolution of operator-overloading, I can't explain myself. A pointer to some resource describing it would be just as nice as an answer. I have 2 translation units. ...
6
votes
2answers
308 views

Template compilation error in Sun Studio 12

We are migrating to Sun Studio 12.1 and with the new compiler [ CC: Sun C++ 5.10 SunOS_sparc 2009/06/03 ]. I am getting compilation error while compiling a code that compiled fine with earlier version ...
3
votes
1answer
214 views

Obtaining address locations of an overload method

How do I get all the address locations for functions/procedures/methods that is overloaded? For example, Dialogs.MessageDlgPosHelp is overloaded having two different versions of it - one without a ...
0
votes
1answer
118 views

Trouble with C++ templates (big surprise!). Why won't this work?

I am testing out a way to mimic C# properties and created the following property class: struct BY_REF { template <class T> struct TT_s { typedef T &TT_t; }; }; ...
8
votes
3answers
631 views

Ambiguous string::operator= call for type with implicit conversion to int and string

Given the following program: #include <iostream> #include <string> using namespace std; struct GenericType{ operator string(){ return "Hello World"; } operator int(){ ...
5
votes
2answers
156 views

std::ostringstream operator overload search order?

I have the following class: namespace { class MimeLogger : public std::ostringstream { public: MimeLogger() {} ~MimeLogger() { LOGEVENT( logModuleWSE, logEventDebug, ...
7
votes
3answers
141 views

How to call constructor if function has the same name

If I have the following: class T { public: T(){} }; void T() { } int main() { T(); // this calls the function, how can I call the constructor T()? } I have no any issue with it, since ...
0
votes
2answers
111 views

c# overload resolution rules

suppose the following extension methods: public static string ToFooBarString(this object obj) { ... } public static string ToFooBarString< T >(this IEnumerable< T > obj) { ... } Now i ...
11
votes
1answer
528 views

Wrong overload is overridden when two methods have identical signatures after substitution of type arguments

We believe this example exhibits a bug in the C# compiler (do make fun of me if we are wrong). This bug may be well-known: After all, our example is a simple modification of what is described in this ...
4
votes
3answers
380 views

Visual Studio bug resolving lambda in method with Func delegate overloads?

I've come across some strange behaviour in Visual Studio 2010 when using anonymous methods in functions that have overloads of various Func delegates. I've created a small reproduction class below. ...

1 2 3