Base: modernize C++11

* remove redundant void-arg
* use nullptr
* replace deprecated headers
This commit is contained in:
wmayer
2022-01-25 20:21:30 +01:00
parent 6c29c65013
commit cad0d01883
72 changed files with 628 additions and 633 deletions

View File

@@ -41,10 +41,10 @@ using namespace Base;
* A more elaborate description of the constructor.
*/
ClassTemplate::ClassTemplate()
: enumPtr(0)
: enumPtr(nullptr)
, enumVar(TVal1)
, publicVar(0)
, handler(0)
, handler(nullptr)
{
}