No posts with label C++. Show all posts
No posts with label C++. Show all posts
Subscribe to:
Posts (Atom)
C++ horrible aspects
C++ horrible aspects Linus Torvalds described C++ as being a horrible language. While C++ has its dark corners I choose it any day ove...
-
pow After an upgrade of Visual Studio 2017 to 2019 it was noticed that regression tests were failing with the new version. There were ...
-
virtual function In some heavily invoked code the following construct was used: interface ITable { virtual std::string GetData() const ...
-
std::shared_ptr std::shared_ptr is a C++ smart pointer who takes shared ownership of the pointee. It solves some of the memory pr...