Is it possible to avoid C++ compiler error (C2757) where 2 different header files contain same symbol for namespace & class?
- by dharmendra
Hi,
I am facing a problem when implementing some new code to an existing library. This library already references a class with a name say 'foo'. The same name is used as a namespace in the other header file which has to be included to implement the new functionality. Since both the header files are a part of legacy code libraries I cannot amend…