/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/Error.c

  • Committer: Gustav Hartvigsson
  • Date: 2015-10-19 11:36:53 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20151019113653-612xg1n4bijpaosy
* Re-Added the inlines...
* Made the thing compile

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
void
55
55
error_free (SError * self) {
56
 
  s_linked_list_free (self->error_list);
 
56
  s_linked_list_free (self->error_list, TRUE);
57
57
  free (self);
58
58
}
59
59