blob: 464cf87dfd134eea06f29508d182c7126ad39315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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)
}
}
|