projects
/
xonotic
/
gmqcc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efecd16
)
Remove override macros
author
Dale Weiler <killfieldengine@gmail.com>
Sun, 6 Jan 2013 02:41:15 +0000
(
02:41
+0000)
committer
Dale Weiler <killfieldengine@gmail.com>
Sun, 6 Jan 2013 02:41:15 +0000
(
02:41
+0000)
correct.c
patch
|
blob
|
history
diff --git
a/correct.c
b/correct.c
index
34f32b4
..
494d9b8
100644
(file)
--- a/
correct.c
+++ b/
correct.c
@@
-229,16
+229,6
@@
void correct_del(correct_trie_t* dictonary, size_t **data) {
vec_free(data);
correct_trie_del(dictonary);
}
-#if 1
-#undef mem_a
-#undef mem_r
-#undef mem_d
-#define mem_a(x) correct_alloc((x))
-#define mem_r(a,b) correct_realloc((a),(b))
-/* doing this in order to avoid 'unused variable' warnings */
-#define mem_d(x) ((void)(0 && (x)))
-#endif
-
/*
* _ is valid in identifiers. I've yet to implement numerics however