mirror of
https://github.com/celisej567/source-engine.git
synced 2026-09-19 20:09:06 +03:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user