diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:51:23 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:51:23 +0100 |
commit | 5e182235cb7e7b601c5e010c298bf17415113ce0 (patch) | |
tree | d7dcfb54efbb5277184e0fcda9aa169b75e771ea /tests/unit | |
parent | 30f3298e9dafa3bc4422c29dad972e320ad70e01 (diff) |
Merge pull request #7348 from thufschmitt/dont-use-vlas
Remove the usage of VLAs in the code
(cherry picked from commit ac4431e9d016e62fb5dc9ae36833bd0c6cdadeec)
Change-Id: Ifbf5fbfc2e27122362a2aaea4b62c7cf3ca46b1a
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/libexpr/value/print.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/libexpr/value/print.cc b/tests/unit/libexpr/value/print.cc index 5e96e12ec..a4f6fc014 100644 --- a/tests/unit/libexpr/value/print.cc +++ b/tests/unit/libexpr/value/print.cc @@ -114,7 +114,8 @@ TEST_F(ValuePrintingTests, vLambda) TEST_F(ValuePrintingTests, vPrimOp) { Value vPrimOp; - vPrimOp.mkPrimOp(nullptr); + PrimOp primOp{}; + vPrimOp.mkPrimOp(&primOp); test(vPrimOp, "<PRIMOP>"); } |