Migrated function_data_t out of base block class

Removed an auto_ptr (yay)
This commit is contained in:
ridiculousfish
2012-08-26 23:30:23 -07:00
parent d788c84440
commit 95de6cf5a7
3 changed files with 38 additions and 55 deletions

View File

@@ -3628,7 +3628,6 @@ block_t::block_t(block_type_t t) :
tok_pos(),
loop_status(),
job(),
function_data(),
src_filename(),
src_lineno(),
wants_pop_env(false),
@@ -3696,6 +3695,7 @@ fake_block_t::fake_block_t() :
}
function_def_block_t::function_def_block_t() :
function_data(),
block_t(FUNCTION_DEF)
{
}