1
0
mirror of https://github.com/squid-cache/squid.git synced 2025-04-18 22:04:07 +03:00

Fix error: template-id not allowed for constructor in C++20 (#1731)

This commit is contained in:
Amos Jeffries 2024-03-10 20:16:22 +00:00 committed by Squid Anubis
parent 6410d31207
commit 63022fd37a

View File

@ -21,7 +21,7 @@ public:
typedef V Value;
typedef int SPLAYCMP(Value const &a, Value const &b);
SplayNode<V> (Value const &);
SplayNode(const Value &);
Value data;
mutable SplayNode<V> *left;
mutable SplayNode<V> *right;