The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
59 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 ...
5
votes
1answer
172 views

Is this a bug in GCC?

EDIT: This is not a bug, just me not knowing about dependent name lookups in templated base classes (which MSVC "helpfully" resolves without errors). I wrote a functor implementation a while back, ...
1
vote
1answer
50 views

virtual method behaves differently with multiple inheritance

why this works struct Base { virtual void visit(const A &) { }; virtual void visit(const B &) { }; } and this complains about ambiguity when calling visit method template< ...
1
vote
1answer
53 views

Templates and name lookup with `stdio.h` functions

I'm trying to build the PCL library in a 32 bit Windows 7 with MinGW. When building the outofcore module I got several error messages about _fseeki64: error: there are no arguments to '_fseeki64' ...
2
votes
3answers
81 views

gcc compiler does not show correct errors with class templates injected names

Recently, I was reading the book: C++ templates: the complete guide written by David Vandevoorde and Nicolai M. Josuttis. Specifically about template parsing quoting from the book pp 126. Class ...
2
votes
4answers
117 views

C++ STL fails to find comparator for nested class

I expected this code to work, but it fails to compile with GCC. It does compile if you lift the inner class out. #include <algorithm> template <typename T> struct Outer { struct Inner ...
8
votes
1answer
123 views

Operator overloading clang++ and g++ different output

With this sample program I observe a different behavior in g++ and clang Foo.h: #include <iostream> namespace Bar { class Foo { public: Foo(int x) : _x(x) {} int x() const ...
2
votes
3answers
71 views

Name Lookup inside the parameter list of member function

typedef int abc; class Some{ public: abc foo(){...} typedef double abc; }; In the code above, I get it that I get an error: error: changes meaning of 'abc' from 'typedef int abc' ...
0
votes
0answers
15 views

IDE behaviour - code-insight lookups using period key

I use the word "symbol" ("symbol" AKA "identifyer" AKA "token") in the sense that "myObject" is a symbol for an object. When using either jdeveloper or netbeans IDE I find it incredibly useful that ...
1
vote
2answers
78 views

Multiple inheritance order used in function resolution?

There was a question posted about inheritance and mixing interface classes: Multiple inhertance of interfaces in C++ Which led me to this question: Does the order of inheritance influence function ...
3
votes
1answer
82 views

Compile error when overloading operator<< with template arguments

I'm trying to use the stl copy () to print the key-value pair in a map. The code is as follows: #include <iterator> #include <iostream> #include <algorithm> #include <map> ...
2
votes
2answers
50 views

Templated function name lookup conundrum(ADL)

Given the following bit of code, why is it that the Generic function is invoked instead of the more specific SomeClass based function? template <typename T> class SomeClass { }; template ...
12
votes
3answers
187 views

Operator in namespace scope hiding another in global scope

Is this a compiler-bug? template <typename T> T& operator++(T& t) { return t; } namespace asdf { enum Foo { }; enum Bar { }; Foo& operator++(Foo& foo); void fun() { ...
4
votes
2answers
198 views

Why does C++11 not support name lookup like this? [closed]

struct A { enum InnerEnum { X }; A(InnerEnum x) {} }; int main() { A a(X); } The compiler complains: error C2065: 'X' : undeclared identifier The compiler knows what the ...
7
votes
2answers
139 views

Name resolution of functions inside templates instantiated with qualified types

Consider the following C++ code example: namespace n { struct A {}; } struct B {}; void foo(int) {} template<typename T> void quux() { foo(T()); } void foo(n::A) {} void foo(B) {} ...
0
votes
1answer
58 views

Usual unqualified lookup and Argument-dependent name lookup(ADL)

For unqualified name lookup, 'Usual unqualified lookup' and 'Argument-dependent name lookup'(ADL), I cannot find in standard which one happens first ? Again as both trying to add something to the ...
3
votes
1answer
110 views

Where does the C++ 98 standard specify that locally declared template names are not dependent?

According to this page: http://womble.decadent.org.uk/c++/template-faq.html#non-dependent "Non-dependent names are those names that are considered not to depend upon the template parameters, plus the ...
0
votes
2answers
118 views

Why does the child class not see the parent's typedef struct in C++?

I ran across some C++ code recently that typedefed a struct in a parent class. However, it seemed to be unavailable in the child class, even tho it was not marked private (it was protected). I've ...
2
votes
2answers
95 views

How can I get the name of a function from a symbol in clojure?

Suppose I define x as symbol function foo (defn foo [x] x) (def x foo) Can the name "foo" be discovered if only given x? Is there a way within foo to look up the name of the function x - "foo" in ...
3
votes
2answers
186 views

Template Member Function Overloading and Multiple Inheritance in C++

I am observing behavior in the below code which I cannot readily explain and would like to understand the theory of better. I cannot seem to find an online documentation source or existing question ...
4
votes
3answers
305 views

Why class member functions shadow free functions with same name?

It recently came to my attention that member functions completely shadow free functions with the same name when inside the class. And by completely i mean that every free function with the same name ...
0
votes
1answer
87 views

Argument-dependent Name Lookup: add extra namespace to look into

I would like to exploit the ADL rules to check for the function in an extra namespace: Say we have a class X. class X { ... }; In A call X x; f(x); I'd like the compiler to look into ...
1
vote
3answers
163 views

Using the this pointer in a dependent derived class template

In the example pointers/countingptr.hpp of the book C++ Templates - The Complete Guide members of the derived dependent class CountingPtr are referred to using the this pointer. Why is this necessary ...
0
votes
2answers
62 views

Is this name lookup in dependent base class with VC++ 2010 non-standard?

The code below does not compile on Ideone or Codepad, yielding errors like: 'X' was not declared in this scope but it does on VC++ 2010: #include <iostream> #include ...
2
votes
3answers
155 views

How to name a nested template in a templated base class?

In the following setup, how can I make it so that I can refer to the name Bar inside the derived class Derived<T>? template <typename T> struct Foo { template <typename U> ...
1
vote
1answer
157 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 ...
3
votes
1answer
735 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) { ...
6
votes
1answer
458 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(); ...
6
votes
1answer
224 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 ...
21
votes
6answers
880 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 ...
18
votes
2answers
635 views

In a templated derived class, why do I need to qualify base class member names with “this->” inside a member function?

While I investigate source code of Qt I saw that trolltech guys explicitly use this keyword to access a field on destructor. inline ~QScopedPointer() { T *oldD = this->d; ...
3
votes
2answers
172 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. ...
9
votes
2answers
180 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 {}; }; ...
13
votes
2answers
680 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 ...
5
votes
3answers
166 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 ...
1
vote
1answer
127 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
247 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 ...
0
votes
1answer
664 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
87 views

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

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 ...
5
votes
1answer
178 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 ...
1
vote
1answer
100 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 ...
7
votes
1answer
224 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 ...
11
votes
2answers
297 views

Why does this program swap the values?

I have the following code: #include "stdafx.h" #include <iostream> using namespace std; #include <conio.h> #include <cstring> #include <iomanip> void swap(long a, long b) { ...
13
votes
1answer
185 views

Private inheritance: name lookup error

I have the following code example that doesn't compile: #include <stdio.h> namespace my { class base1 { // line 6 }; class base2: private base1 { }; class ...
2
votes
4answers
245 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
1k views

distance calculation error in c++ [closed]

#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& ...
6
votes
4answers
935 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; } ...
1
vote
2answers
364 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(); // ...
2
votes
2answers
206 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 ...
4
votes
2answers
613 views

Multiple Inheritance Template Class

class messageA { }; class messageB { }; template<class T> class queue { public: virtual ~queue() {} void submit(T& x) {} }; class A : public queue<messageA>, public ...

1 2