| c++ Programming Glossary: dependentWhere and why do I have to put the “template” and “typename” keywords? http://stackoverflow.com/questions/610245/where-and-why-do-i-have-to-put-the-template-and-typename-keywords  where and why do I have to put typename and template on dependent names What exactly are dependent names anyway I have the following.. typename and template on dependent names What exactly are dependent names anyway I have the following code template typename T typename.. inUnion U dummy line. I'm fairly certain that inUnion is a dependent name and VC is quite right in choking on it. I also know that.. 
 Why can't I use variable of parent class that is template class? http://stackoverflow.com/questions/10171242/why-cant-i-use-variable-of-parent-class-that-is-template-class  up in phase 1 therefore an 'x' must be  visible. T x 0 Dependent because it depends on T .  Looked up in phase 2 which is when.. 
 Name lookups in C++ templates http://stackoverflow.com/questions/10639053/name-lookups-in-c-templates  depend on the template arguments is looked up and checked. Dependent names are then left to resolve in the second pass once the type.. 
 Implementing the B=f(A) syntax by move assignment http://stackoverflow.com/questions/16287644/implementing-the-b-fa-syntax-by-move-assignment  friend function so that it can be found through Argument Dependent Look up. I also recommend calling swap and all other functions.. 
 Dependent name resolution & namespace std / Standard Library http://stackoverflow.com/questions/16548379/dependent-name-resolution-namespace-std-standard-library  name resolution namespace std Standard Library  While answering.. 
 Why does C++ parameter scope affect function lookup within a namespace? http://stackoverflow.com/questions/5392699/why-does-c-parameter-scope-affect-function-lookup-within-a-namespace    share improve this question   That is ADL Argument Dependent Lookup or Koenig Lookup for the designer of the feature . The.. 
 Where and why do I have to put the “template” and “typename” keywords? http://stackoverflow.com/questions/610245/where-and-why-do-i-have-to-put-the-template-and-typename-keywords  or their type. So we have with typical examples appended Dependent types e.g a type template parameter T Value dependent expressions.. expressions and 14.6.2.3 for value dependent expressions. Dependent names Now of all the constructs that denote dependent types.. but unfortunately are not caught by this general rule. Dependent function names Not primarily a concern of this article but still.. 
 Dependent scope and nested templates http://stackoverflow.com/questions/6571381/dependent-scope-and-nested-templates  scope and nested templates  When I compile this #ifndef BTREE_H.. 
 Access friend function defined in class http://stackoverflow.com/questions/7785886/access-friend-function-defined-in-class  The same problem occurs for fun except that Argument Dependent Lookup can take over and find the function because there is.. 
 Why GCC allows calling this function without using its namespace first? [duplicate] http://stackoverflow.com/questions/7965262/why-gcc-allows-calling-this-function-without-using-its-namespace-first    share improve this question   This is called Argument Dependent Lookup or Koenig Lookup Basically if a symbol couldn't be resolved.. 
 Detailed explanation on how Koenig lookup works with namespaces and why its a good thing? http://stackoverflow.com/questions/8111677/detailed-explanation-on-how-koenig-lookup-works-with-namespaces-and-why-its-a-go    Koenig Lookup is also commonly known as Argument Dependent Lookup in C and most of the Standard C compilers support it... 
 |