1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Improve c++20 compatibility (#195)

This commit is contained in:
icedrocket
2024-01-14 06:58:05 +09:00
committed by GitHub
parent 2f9dd2e61a
commit 731e38ba24
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ template <class T> class NTreeNode
{
public:
// constructor
NTreeNode<T>( T data );
NTreeNode( T data );
NTreeNode<T> *PrependChild( NTreeNode<T> *node );
NTreeNode<T> *AppendChild( NTreeNode<T> *node );