The argument-dependent-lookup tag has no wiki summary.
22
votes
1answer
600 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 ...
21
votes
4answers
466 views
Functions with class arguments are leaked from a namespace?
I have a small piece of code here for your consideration which puzzles me quite a lot. The strange thing is that it compiles on both Sun Studio and GCC even though I think it should not.
Consider ...
17
votes
2answers
353 views
getting an element from a tuple [closed]
Possible Duplicate:
Why doesn't ADL find function templates?
Calling get does not seem to invoke argument dependent lookup:
auto t = std::make_tuple(false, false, true);
bool a = ...
17
votes
2answers
281 views
Why doesn't ADL find function templates?
What part of the C++ specification restricts argument dependent lookup from finding function templates in the set of associated namespaces? In other words, why does the last call in main below fail to ...
14
votes
2answers
149 views
How do I write an ADL-enabled noexcept specification?
Imagine I'm writing some container template or something. And the time comes to specialize std::swap for it. As a good citizen, I'll enable ADL by doing something like this:
template <typename ...
14
votes
1answer
172 views
Where should I define operator >> for my specialization of std::pair?
Consider the following program:
#include <iostream>
#include <iterator>
#include <vector>
#include <utility>
using namespace std; //just for convenience, illustration only
...
10
votes
2answers
190 views
Beginning generically, plus decltype considering local using-declaration
C++0x's ranged-for loop has a special exception to handle arrays (FDIS §6.5.4), and there are two functions, std::begin and end, which are overloaded to handle arrays or to select begin/end methods. ...
9
votes
1answer
671 views
Range-based for statement definition redundancy
Looking at n3092, in §6.5.4 we find the equivalency for a range-based for loop. It then goes on to say what __begin and __end are equal to. It differentiates between arrays and other types, and I find ...
8
votes
2answers
446 views
C++ operator lookup rules / Koenig lookup
While writing a test suite, I needed to provide an implementation of operator<<(std::ostream&... for Boost unit test to use.
This worked:
namespace theseus { namespace core {
...
6
votes
2answers
81 views
Do custom container iterators guarantee ADL to consider namespace std?
I have no intention of using this in real code. I promise. I'm just pathologically curious.
Does the standard guarantee that std namespace is going to be found when a function argument is of type ...
6
votes
1answer
577 views
Range-based for loops and ADL
The C++0x standard working draft states (section 6.5.4) the following about the begin() and end() calls that are implicit in a range-based for loop:
'begin' and 'end' are looked up with
...
5
votes
4answers
80 views
How to make a function template the least priority during ADL?
I have a problem where I'd like to provide a generic version of a function foo which may only be applied when there is absolutely no other match for an invocation. How can I modify the following code ...
5
votes
6answers
265 views
ADL with typedefs from another namespace
I have something like this:
#include <iostream>
namespace N
{
typedef std::pair<int, double> MyPair;
std::ostream& operator << (std::ostream& o, MyPair const & ...
5
votes
4answers
300 views
Ambiguous call to templated function due to ADL
I've been bitten by this problem a couple of times and so have my colleagues. When compiling
#include <deque>
#include <boost/algorithm/string/find.hpp>
#include ...
4
votes
1answer
167 views
C++ ADL in nested namespaces with template function
I have a question regarding the standard ADL resolution in C++.
Here is a sample code explaining my enquiry:
#include <string>
// The mechanism:
namespace A {
template< class C >
...
4
votes
2answers
243 views
Rationale for Koenig lookup
What's the rationale of Koenig lookup?
Cannot avoid thinking of it like something that makes your code a lot harder to read and more instable.
Couldn't they define Koenig lookup so that it only work ...
4
votes
5answers
329 views
Why was argument dependent lookup invented?
Why was argument dependent lookup (ADL) invented? Is it just so we can write cout << stuff instead of std::operator<<(cout, stuff)? If that is the case, why wasn't ADL limited to operators ...
3
votes
2answers
314 views
Is there a legal way to print tuples and pairs using operator<<?
I have a set of templates/functions that allow me to print a tuple/pair assuming that each type in the tuple/pair has operator<< defined for it. Unfortunately, due to 17.4.3.1, it is illegal to ...
3
votes
1answer
240 views
ADL and friend injection
Consider this code:
template <int N>
struct X
{
friend void f(X *) {}
};
int main()
{
f((X<0> *)0); // Error?
}
compilers seem to heavily disagree. (MSVC08/10 says no, GCC<4.5 ...
3
votes
1answer
224 views
Weird behaviour of Koenig Lookup
consider the following program:
namespace NS2 {
class base { };
template<typename T>
int size(T& t) {
std::cout << "size NS2 called!" << ...
2
votes
0answers
155 views
swap() for custom type in C++: use ADL or template specialization? [closed]
Possible Duplicate:
how to provide a swap function for my class?
Similar questions (e.g. How to overload std::swap()) have been asked here, but I still don't see a conclusive answer.
From ...
2
votes
2answers
150 views
Which compiler between Visual Studio 10 and GCC 4.5 is correct regarding operator overloading and argument-dependendent lookup?
I have the following code:
class Foo;
class Bar;
class Bar {
public:
Bar() {
}
Bar(Foo &foo) {
}
};
class Foo {
public:
Foo() {
}
Foo(Foo &foo) {
}
...
2
votes
2answers
134 views
Best ADL match between const char * and const char (& p)[T_Size]
I have two functions :
void foo(const char * p)
and
template<size_t T_Size>
void foo(const char (& p)[T_Size]) ;
Given the call:
int main(int argc, char* argv[])
{
char a[21] ; ...
2
votes
4answers
239 views
What is the preference of function/method/template name resolving in C++?
How does the C++ compiler decide which function/method to call if there are multiple possibilities?
In my specific case I have the standard free function of the C++ Run time and I also have a ...
1
vote
3answers
93 views
ADL without templates
Can one show me an example of ADL without using templates? Never seen something like that. I mean something like here. Specifically I am interested in example in which it leads to some pitfall like in ...
0
votes
1answer
24 views
ADL versus scope-resolution — which to prefer?
How do I tell whether I should use
my_type bar;
using some_namespace::foo;
foo(bar);
instead of
some_namespace::foo(bar);
when calling my function foo (that is not within my immediate scope)? Is ...
0
votes
1answer
75 views
AIR Linux - ADT Failed to load the AIR Runtime
i've just added air-sdk to ubuntu, and adl is working, but when im trying to use adt i have this:
Failed to load the AIR Runtime
What i can do whit this?
I need adt to make native installer from ...
0
votes
1answer
182 views
AIR: Adobe Air Debug Launcher stopped working…any logs?
I m having trouble with AIR debug launcher(adl) under win 7 64 bits home familial with AIR SDK runtime 2.7. It sometimes crash and i have no posibilities to understand if its because of my software or ...
0
votes
1answer
322 views
SharePoint 2007 Dynamic Filtered Lookup
Good morning, all. I'm looking for help with setting up a library template in SharePoint 2007. Here are the details:
I have a parent site with several subsites.
I want to set up a library template ...
0
votes
3answers
169 views
Templates and argument dependent lookup
When compiling this program, I was expecting the operator<< call to resolve to the one in the global namespace, but instead, the compiler reports an ambiguous overload. I thought non-dependent ...
0
votes
1answer
49 views
Architectural Description Language (ADLs) usage?
Im doing a project for Software Architecture Module and have to create one of my 'Views' using an ADL. While I've been doing some research into the various ADL's I have found out that most of them ...
0
votes
2answers
201 views
SCORM 2004 ADL Test Suite Error
tldnr: need a variation to allow "/" in parameter object on organization item;
When doing a "Content Package Conformance Test" I receve the following error when for the parameters attribute. This ...
0
votes
5answers
222 views
Rules for Argument Dependent name lookup in C++
There have been some questions on SO recently on ADL that have got me thinking. Basically, I am confused which header files compiler can search when performing ADL ? Is it only the ones included by ...
0
votes
3answers
136 views
Experience with Architecture Description Languages
Being familiar with graphical modeling tools, I recently thought about the concept of architecture description languages (ADL) where one describes architectures in a textual form in order to ...