Search Articles — Sudonull

Search Results

In this project

Using in C++: name lookup and repeated declarations

https://sudonull.com/using-in-c-name-lookup-and-repeated-declarations

Analysis of using directives and declarations in C++: namespaces, blocks, classes. Why A::x and x are different variables. For middle/senior developers. Study name lookup pitfalls.

C++ Name Lookup Mechanism: ADL and Two-Phase Template Lookup

https://sudonull.com/c-name-lookup-mechanism-adl-and-two-phase-template-lookup

We break down how the C++ compiler processes names in templates and namespaces. Learn why ADL and two-phase lookup cause errors and how to avoid them. Read a detailed analysis.

Trending Now