worked out dependency type issue

This commit is contained in:
Chris Punches
2017-06-25 17:36:32 -04:00
parent 03ff5150ac
commit 1fe0defc7b
4 changed files with 21 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ void Plan::load_plan_file(std::string filename, bool verbose)
Task tmp_T;
for ( int index = 0; index < this->json_root.size(); index++ )
{
tmp_T.load_root( this->json_root[ index ] );
tmp_T.load_root( this->json_root[ index ], verbose );
this->tasks.push_back( tmp_T );
if ( verbose ) {
std::cout << "Added task \"" << tmp_T.get_name() << "\" to Plan." << std::endl;