diff --git a/public/ntree.h b/public/ntree.h index 4512ea79..1baf8ea3 100644 --- a/public/ntree.h +++ b/public/ntree.h @@ -16,7 +16,7 @@ template class NTreeNode { public: // constructor - NTreeNode( T data ); + NTreeNode( T data ); NTreeNode *PrependChild( NTreeNode *node ); NTreeNode *AppendChild( NTreeNode *node ); diff --git a/public/tier0/threadtools.h b/public/tier0/threadtools.h index 6df825d9..4a8933e7 100644 --- a/public/tier0/threadtools.h +++ b/public/tier0/threadtools.h @@ -870,8 +870,8 @@ private: MUTEX_TYPE &m_lock; // Disallow copying - CAutoLockT( const CAutoLockT & ); - CAutoLockT &operator=( const CAutoLockT & ); + CAutoLockT( const CAutoLockT & ); + CAutoLockT &operator=( const CAutoLockT & ); }; typedef CAutoLockT CAutoLock;