value.hh: Fix warning about {struct/class} Value

This commit is contained in:
Robert Hensing 2024-03-20 23:07:00 +01:00
parent a865049c4f
commit 8c6e0df45f

View File

@ -159,7 +159,7 @@ public:
iterator begin() { return &elems[0]; }
iterator end() { return &elems[size]; }
friend class Value;
friend struct Value;
};