11 lines
242 B
C
11 lines
242 B
C
#include "../../include/ground.h"
|
|
|
|
void _GroundFreeArg(GroundArg* in) {
|
|
if (in->type == GroundArg_Value) {
|
|
Ground.Free.Value(&in->as.value);
|
|
} else {
|
|
// FIXME - double free for arg
|
|
// free(in->as.ref);
|
|
}
|
|
}
|