Case - add control handler check to is_empty()

Martin Kojtal 2016-01-25 14:24:10 +00:00
parent 110b13e8b5
commit 4db0ec48c3
1 changed files with 1 additions and 1 deletions

View File

@ -147,5 +147,5 @@ Case::get_description() const {
bool
Case::is_empty() const {
return !(handler || repeat_count_handler || setup_handler || teardown_handler);
return !(handler || control_handler || repeat_count_handler || setup_handler || teardown_handler);
}