From 05b9dac7547009821f4a698b139a49d5d1e4bc9e Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 17 Apr 2024 11:47:07 -0400 Subject: [PATCH] Fix friend `struct`/`class` mismatch warning --- src/libexpr/attr-set.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libexpr/attr-set.hh b/src/libexpr/attr-set.hh index c90bb0633..ba798196d 100644 --- a/src/libexpr/attr-set.hh +++ b/src/libexpr/attr-set.hh @@ -189,7 +189,7 @@ public: bindings = newBindings; } - friend class ExprAttrs; + friend struct ExprAttrs; }; }