Tagged Questions
21
votes
1answer
575 views
What are the pitfalls of ADL?
Some time ago I read an article that explained several pitfalls of argument dependent lookup, but I cannot find it anymore. It was about gaining access to things that you should not have access to or ...
15
votes
4answers
537 views
C++0x confusion with using declarations
What should happen for this case:
struct A {
void f();
};
struct B : virtual A {
using A::f;
};
struct C : virtual A {
using A::f;
};
struct D : B, C {
void g() {
f();
}
};
The ...
13
votes
3answers
340 views
Overload resolution and arrays: which function should be called?
Consider the following program:
#include <cstddef>
#include <cstdio>
void f(char const*&&) { std::puts("char const*&&"); } // (1)
void f(char const* const&) ...
12
votes
3answers
148 views
Should this compile? Overload resolution and implicit conversions
This example seems to compile with VC10 and gcc (though my version of gcc is very old).
EDIT: R. Martinho Fernandez tried this on gcc 4.7 and the behaviour is still the same.
struct Base
{
...
9
votes
2answers
313 views
C++0x const RValue reference as function parameter
I am trying to understand why someone would write a function that takes a const rvalue reference.
In the code example below what purpose is the const rvalue reference function (returning "3").
And ...
9
votes
5answers
251 views
Order of operator overload resolution involving temporaries
Consider the following minimal example:
#include <iostream>
using namespace std;
class myostream : public ostream {
public:
myostream(ostream const &other) :
...
7
votes
6answers
115 views
member function hiding free function
void foo(int)
{
}
class X
{
void foo()
{
}
void bar()
{
foo(42);
// error: no matching function for call to 'X::foo(int)'
// note: candidate is:
...
7
votes
2answers
218 views
Strange case of C++11 overload resolution
I came across a rather strange case of overload resolution today. I reduced it to the following:
struct S
{
S(int, int = 0);
};
class C
{
public:
template <typename... Args>
C(S, ...
7
votes
1answer
175 views
Built-in operator candidates
C++03 $13.6/1- "[...]If there is a
user-written candidate with the same
name and parameter types as a built-in
candidate operator function, the
built-in operator function is hidden
and is ...
6
votes
1answer
605 views
If the address of a function can not be resolved during deduction, is it SFINAE or a compiler error?
In C++0x SFINAE rules have been simplified such that any invalid expression or type that occurs in the "immediate context" of deduction does not result in a compiler error but rather in deduction ...
5
votes
2answers
160 views
Ambiguous call of overloaded constructor due to super class (pass by value)
I wrote a little C++ wrapper around some parts of GSL and encounter the following puzzle (for me). The code (reduced to its essentials) is as follows:
#include <stdlib.h>
struct ...
5
votes
4answers
215 views
Why does this constructor overload resolve incorrectly?
This is my (stripped) class and instantiation of one object:
template <typename T, typename Allocator = std::allocator<T> >
class Carray {
typedef typename Allocator::size_type ...
4
votes
3answers
117 views
Why non-const version is selected over the const version for class?
Following is the test code:
struct A
{
operator int ();
operator int () const;
};
void foo (const int);
Now, upon invoking:
foo(A()); // calls A::operator int()
Why does it always chooses ...
4
votes
6answers
210 views
Why NULL is converted to string*?
I saw the following code:
class NullClass {
public:
template<class T> operator T*() const { return 0; }
};
const NullClass NULL;
void f(int x);
void f(string *p);
f(NULL); // converts ...
4
votes
3answers
412 views
How to dump candidates in function overload resolution?
How can I dump candidate functions (or viable functions or best viable functions) for a function invocation?
I know g++ provides an option to dump class hierarchy. (In fact, Visual Studio 2010 ...
4
votes
3answers
215 views
Why is the compiler not selecting my function-template overload in the following example?
Given the following function templates:
#include <vector>
#include <utility>
struct Base { };
struct Derived : Base { };
// #1
template <typename T1, typename T2>
void f(const ...
3
votes
2answers
111 views
Change constructor precedence
Is it possible to define a constructor for all derived types and a template constructor?
I've written this testcase to illustrate my problem:
#include <iostream>
class Variant;
class ...
3
votes
2answers
90 views
Strange compile error regarding overload resolution
This code fragment:
namespace ns
{
struct last;
struct first
{
typedef last next;
};
template <typename T>
struct chain
{
chain<typename ...
2
votes
2answers
85 views
c++ overload operator resolution
I'm learning c++ and using C++ Primer. Consider the following exercise 14.46:
class Complex {
Complex(double);
// ...
};
class LongDouble {
friend LongDouble ...
2
votes
2answers
131 views
Trouble with const/non-const overload resolution
I have a class that looks something like this:
class ClassA
{
public:
float Get(int num) const;
protected:
float& Get(int num);
}
Outside of the class, I call the Get() function.
...
2
votes
1answer
216 views
Overload on ostream in a variadic template function
I have a variadic function that I want to overload on the first parameter type.
void write( void ) { }
void write( std::ostream& ) { }
template< typename Head, typename... Rest >
void ...
2
votes
2answers
230 views
Function with parameter type that has a copy-constructor with non-const ref chosen?
Some time ago I was confused by the following behavior of some code when I wanted to write a is_callable<F, Args...> trait. Overload resolution won't call functions accepting arguments by ...
1
vote
5answers
105 views
C++ compiler picking the wrong overload of a class member function
I have this code:
template <class T>
class Something
{
T val;
public:
inline Something() : val() {}
inline Something(T v) : val(v) {}
inline T& get() const { return val; }
...
1
vote
2answers
230 views
Unhelpful (maybe wrong?) gcc error message
I just spent a couple of hours debugging a compiler error that I could have fixed immediately if the compiler's error message had been more helpful.
I've reduced it to a simple example:
template ...
1
vote
4answers
681 views
How to resolve ambiguity of call to overloaded function with literal 0 and pointer
I'm pretty sure this must have been here already, but I didn't find much information on how to solve this kind of problem (without casting on the call):
Given two overloads, I want that a call with ...
1
vote
2answers
633 views
distance calculation error in c++
#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
int square(int a){
return a*a;
}
struct Point{
int x,y;
};
int distance (const Point& ...
1
vote
2answers
212 views
Overload Resolution/Ambiguity in name lookup(which one)
$7.3.3/14 (C++03)
struct A { int x(); };
struct B : A { };
struct C : A {
using A::x;
int x(int);
};
struct D : B, C {
using C::x;
int x(double);
};
int f(D* d) {
return d->x(); // ...
1
vote
2answers
82 views
Why does the compiler not resolve this call to a template function?
In below program why does the compiler generate an error for the call to the printMax template function and not the call to the printMaxInts function?
#include <iostream>
template<class ...
0
votes
1answer
56 views
Using Bind to produce a parameterless function results in error
I am trying to figure out the proper use of std::bind with a boost::signal2 signal.
The error set I am getting with clang++ (from Xcode 4.2.1) is:
~/Projects/Myron/Myron/main.cpp:29:59: error: ...
0
votes
4answers
140 views
What is the cause of this overload resolution headache?
I've got a program where I've got a lot of nested if/switch statements which were repeated in several places. I tried to extract that out and put the switches in a template method class, and then ...
0
votes
2answers
180 views
Template function overload not called as expected
My situation is the following:
I have a template wrapper that handles the situation of values and object being nullable without having to manually handle pointer or even new. This basically boils ...