serious progress is cleaning up type safety of splay trees

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/dev-1.0@215 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2007-06-23 19:04:09 +00:00
parent 9098257a7a
commit 9abcd21e44
24 changed files with 171 additions and 250 deletions

View File

@ -30,7 +30,7 @@
#include "Expr.h"
#include "InitCond.h"
#include "Param.h"
#include "SplayTree.h"
#include "SplayTree.hpp"
#include "wipemalloc.h"
@ -135,15 +135,3 @@ void InitCond::init_cond_to_string() {
init_cond_string_buffer_index+= string_length + 1;
}
char *InitCond::create_init_cond_string_buffer( SplayTree * init_cond_tree ) {
if (init_cond_tree == NULL)
return NULL;
init_cond_string_buffer_index = 0;
init_cond_tree->splay_traverse((void (*)(void*))init_cond_to_string_helper);
return init_cond_string_buffer;
}