src/oldpool.h
changeset 5838 9c3129cb019b
parent 5726 8f399788f6c9
child 6298 c30fe89622df
child 6573 7624f942237f
--- a/src/oldpool.h	Wed Jan 10 18:44:52 2007 +0000
+++ b/src/oldpool.h	Wed Jan 10 18:56:51 2007 +0000
@@ -16,11 +16,11 @@
  *  please try to avoid manual calls!
  */
 struct OldMemoryPool {
-	const char* const name;     ///< Name of the pool (just for debugging)
+	const char* name;     ///< Name of the pool (just for debugging)
 
-	const uint max_blocks;      ///< The max amount of blocks this pool can have
-	const uint block_size_bits; ///< The size of each block in bits
-	const uint item_size;       ///< How many bytes one block is
+	uint max_blocks;      ///< The max amount of blocks this pool can have
+	uint block_size_bits; ///< The size of each block in bits
+	uint item_size;       ///< How many bytes one block is
 
 	/// Pointer to a function that is called after a new block is added
 	OldMemoryPoolNewBlock *new_block_proc;