pacificclimate/Rudunits2

`ud.convert` error on vectors of size > 2^32

Opened this issue · 0 comments

ud.covert uses rep() to construct the return value before filling it in. Unfortunately, rep() fails for vector sizes > 2^32 or 4GB. ud.convert should be changed to use rep_len (which is unaffected) or to not use rep at all.