Monthly Archives: December 2016

C++ – Anonymous namespace

The main reason of using anonymous namespace in C++ is to localize declaration in translation unit. The compiler will choose the unique name for unnamed namespace so that it can guarantee that there are no conflict on using same name … Continue reading

Posted in C++, Programming | Leave a comment