mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-12 11:49:09 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -609,7 +609,7 @@ private:
|
||||
class CThreadLocalPtr : private CThreadLocalBase
|
||||
{
|
||||
public:
|
||||
CThreadLocalPtr() {}
|
||||
CThreadLocalPtr() = default;
|
||||
|
||||
operator const void *() const { return (const T *)Get(); }
|
||||
operator void *() { return (T *)Get(); }
|
||||
|
||||
Reference in New Issue
Block a user