Replace empty constructors with default constructors #88

This commit is contained in:
nillerusr
2022-11-05 14:22:27 +03:00
parent ba90de20d9
commit 8fbc002a37
97 changed files with 192 additions and 2620 deletions

View File

@@ -44,7 +44,7 @@ class CHandle : public CBaseHandle
{
public:
CHandle();
CHandle() = default;
CHandle( int iEntry, int iSerialNumber );
CHandle( const CBaseHandle &handle );
CHandle( T *pVal );
@@ -71,12 +71,6 @@ public:
// Inlines.
// ----------------------------------------------------------------------- //
template<class T>
CHandle<T>::CHandle()
{
}
template<class T>
CHandle<T>::CHandle( int iEntry, int iSerialNumber )
{