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

all: support -gc boehm on systems with libgc-dev installed (#9382)

This commit is contained in:
Delyan Angelov
2021-03-20 15:16:36 +02:00
committed by GitHub
parent a6ddd24f5c
commit 8810af76df
13 changed files with 135 additions and 19 deletions

View File

@ -91,6 +91,6 @@ pub fn (ie &IError) free() {
unsafe {
ie.msg.free()
cie := &C.IError(ie)
C.free(cie._object)
free(cie._object)
}
}