mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
16 lines
176 B
V
16 lines
176 B
V
module builtin
|
|
|
|
[typedef]
|
|
struct C.IError {
|
|
_object voidptr
|
|
}
|
|
|
|
[unsafe]
|
|
pub fn (ie &IError) free() {
|
|
unsafe {
|
|
ie.msg.free()
|
|
cie := &C.IError(ie)
|
|
free(cie._object)
|
|
}
|
|
}
|