diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh index 450216ec0..17a85f1de 100644 --- a/src/libexpr/value.hh +++ b/src/libexpr/value.hh @@ -384,7 +384,7 @@ public: return internalType == tList1 || internalType == tList2 ? smallList : bigList.elems; } - const Value * const * listElems() const + Value * const * listElems() const { return internalType == tList1 || internalType == tList2 ? smallList : bigList.elems; }