Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
6answers
578 views

Ambiguous member access expression: is Clang rejecting valid code?

I have some code that, for the purposes of this question, boils down to template<typename T> class TemplateClass : public T { public: void method() {} template<typename U> static ...
12
votes
2answers
198 views

Ambiguous injected class name is not an error

What I read in the C++ standard about injected class names contradicts (as I see it) with the behavior of a sample program I will present shortly. Here's what I read: From 3.4 (paragraph 3) The ...
11
votes
1answer
131 views

Private inheritance: name lookup problem

I have the following code example that doesn't compile: #include <stdio.h> namespace my { class base1 { // line 6 }; class base2: private base1 { }; class ...
9
votes
2answers
116 views

Name-lookup of nested classes with inheritance

Is this guaranteed to work: struct A { struct Gold {}; }; struct B : public A { typedef Gold BaseGold; struct Gold {}; }; struct C : public B { typedef Gold BaseGold; struct Gold {}; }; ...
6
votes
1answer
114 views

friend declaration of template specialization fails

The following code containing friend declaration fails with indicated error (see http://ideone.com/Kq5dy): template<class T> void foo() {} template<typename T> class A { void foo(); ...
5
votes
1answer
99 views

Scope resolution for template instantiation

I have the following set of classes (a minimal replication of my real situation): namespace Parent { class A {}; namespace Nested { class A {}; } template <typename T> class B ...
5
votes
3answers
149 views

ISO C++ draft - 3.4.2/3 - Argument Dependant Name Lookup

A point from the ISO C++ draft (n3290): 3.4.2/3 Argument Dependant Name Lookup: Let X be the lookup set produced by unqualified lookup (3.4.1) and let Y be the lookup set produced by ...
5
votes
1answer
154 views

namelookup with Unqualified name : C++0x draft n3290

A point from the ISO C++ Draft n3290 : 3.4.0 2nd point A name “looked up in the context of an expression” is looked up as an unqualified name in the scope where the expression is found. Would ...
5
votes
4answers
418 views

Does overriding a non-const virtual method hide a const overload?

Consider: #include <iostream> using namespace std; struct A { virtual void f() { cout << "A::f" << endl; } virtual void f() const { cout << "A::f const" << endl; } ...
4
votes
1answer
138 views

3.4.2 Argument-dependent name lookup from n3290 Draft

A point from ISO draft n3290 section 3.4.2 paragraph 1: When the postfix-expression in a function call is an unqualified-id, other namespaces not considered during the usual unqualified lookup may ...
3
votes
1answer
89 views

How to use BOOST_STATIC_ASSERT

#include <iostream> #include <boost/static_assert.hpp> using namespace std; // I understand how the following template function works // template <class T> // T GetMax (T a, T b) { ...
3
votes
2answers
104 views

Confusion understanding Virtual function call and dependent base class

I am reading from ebook Templates complete guide and question which i'm gonna ask might be stupid to you but.. There is section in that 9.4.2 Dependent Base Classes which i am unable to understand. ...
2
votes
4answers
148 views

C++ class member name lookup issues (regarding the wording of standard n3225)

I am very confused about the standard 10.2/13, [ Note: Even if the result of name lookup is unambiguous, use of a name found in multiple subobjects might still be ambiguous (4.11, 5.2.5, 5.3.1, ...
2
votes
2answers
131 views

Name lookup Clarification

$10.2/4- "[ Note: Looking up a name in an elaborated-type-specifier (3.4.4) or base-specifier (Clause 10), for instance, ignores all nontype declarations, while looking up a name in a ...
1
vote
1answer
63 views

Name lookup of friend function in local class

Compiling the following: void bar() { /* ... */ } void foo() { struct MyStruct { friend void bar(); }; } int main() { //.. } results in the error: error: friend ...
1
vote
1answer
113 views

A point from iso C++ n3290 : Argument dependant Name Lookup:

A point from iso C++ n3290 :Argument dependant Name Lookup: section 3.4.2, para 4 When considering an associated namespace, the lookup is the same as the lookup performed when the associated ...
1
vote
1answer
73 views

Argument dependant Name Lookup in C++ : point from n3290 Draft

A point from ISO C++ DRAFT n3290 :Argument dependant Name Lookup : section 3.4.2, para 2, For each argument type T in the function call, there is a set of zero or more associated namespaces ...
1
vote
1answer
90 views

A point from n3290 :Argument-dependent name lookup [closed]

A point from n3290 Draft ISO Standard:Section : 3.4.2 ,Point 2nd For each argument type T in the function call, there is a set of zero or more associated namespaces and aset of zero or more ...
1
vote
2answers
685 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
227 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(); // ...
0
votes
1answer
342 views

String lookup error for global variable in CUDA?

I have something like either: __constant__ double PNT[ NUMCOORDS ]; __device__ double PNT[ NUMCOORDS ]; depending upon some preprocessor selections. I then use this variable: ...
0
votes
0answers
82 views

"Name lookup shall find an unambiguous declaration for the name [closed]

Possible Duplicate: namelookup with Unqualified name : C++0x draft n3290 A point from ISO standard :n3290 Draft : 3.4 Name lookup ,1st point "Name lookup shall find an unambiguous ...