Reid Kleckner wrote: > C++ newbie question: But doesn't all the code in LLVM avoid "using > namespace std"? It seems like the solution is to just never use both > the llvm and std namespace in the C++ file. > The point of ADL is that it looks into namespaces based on argument types, whether you have using declarations/statements or not. Sebastian