Is there any programming paradigm alternative to templates in C++ so the developer can write clean code without compiler warnings and errors like warning C4251: dll-interface to be used by clients of class I want to reach generic programming without the use of templates like using macros and any other facility in C++ except templates
I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...