aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorPuck Meerburg <puck@puckipedia.com>2024-05-15 23:22:18 +0000
committerPuck Meerburg <puck@puckipedia.com>2024-05-16 13:01:40 +0000
commitc6bb377c91f40ae571d0a0fc951b736cb8fc2ead (patch)
tree93dcb9027f7f9c37e7f278194ecb911ab590990d /src/libexpr
parent7cfaf057e35b7bb329ffff344e30fdfc850566c3 (diff)
Loosen constness on listElems() result
Change-Id: I1caff000362c83e5172413a036c22a2e9ed3ede8
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/value.hh2
1 files changed, 1 insertions, 1 deletions
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;
}