diff options
author | Paweł Kołodziejski | 2009-02-19 08:44:53 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2009-02-19 08:44:53 +0000 |
commit | 2f2f262062d54e80811e2c53cecebc7ce8137203 (patch) | |
tree | cdd629d85c3032d25466cec72fef00992cf839d5 | |
parent | 8ca98d41a23d7f26162bae3784fb3be3e5e5fcac (diff) | |
download | scummvm-rg350-2f2f262062d54e80811e2c53cecebc7ce8137203.tar.gz scummvm-rg350-2f2f262062d54e80811e2c53cecebc7ce8137203.tar.bz2 scummvm-rg350-2f2f262062d54e80811e2c53cecebc7ce8137203.zip |
formating
svn-id: r38538
-rw-r--r-- | engines/sci/engine/gc.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/sci/engine/gc.h b/engines/sci/engine/gc.h index b7d7c9e9ad..ab387d7d5e 100644 --- a/engines/sci/engine/gc.h +++ b/engines/sci/engine/gc.h @@ -47,18 +47,15 @@ struct reg_t_Hash { // The reg_t_hash_map is actually really a hashset typedef Common::HashMap<reg_t, bool, reg_t_Hash, reg_t_EqualTo> reg_t_hash_map; - -reg_t_hash_map * -find_all_used_references(state_t *s); +reg_t_hash_map *find_all_used_references(state_t *s); /* Finds all used references and normalises them to their memory addresses ** Parameters: (state_t *) s: The state to gather all information from ** Returns : (reg_t_hash_map *) A hash map containing entries for all used references */ -void -run_gc(state_t *s); +void run_gc(state_t *s); /* Runs garbage collection on the current system state ** Parameters: (state_t *) s: The state in which we should gc */ -#endif /* !defined(GC_H_) */ +#endif // !defined(GC_H_) |