Commit a3d3001e authored by Stefan Behnel's avatar Stefan Behnel Committed by GitHub

Merge pull request #2783 from QuLogic/fix-lvalue_refs

Fix crash in lvalue_refs test.
parents 4b64bbe1 c2c1ba77
......@@ -15,7 +15,7 @@ cdef void foo(vector[dpp] &bar, vector[vector[dp]] &baz) nogil:
def test_lvalue_ref_assignment():
cdef vector[dpp] bar
cdef vector[vector[dp]] baz
cdef vector[double] data
cdef vector[double] data = [0.0]
cdef dp bongle = &data[0]
bar.resize(1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment