1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

math.complex: make mutable the Complex.re and Complex.im fields (#13540)

This commit is contained in:
simon place 2022-02-21 10:39:45 +00:00 committed by GitHub
parent 809772db4e
commit 8ba4a3dd01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ module complex
import math
pub struct Complex {
pub:
pub mut:
re f64
im f64
}