Fix compile error in scheduler.h (#108)

* Fix compile error in scheduler.h

Missing semicolon in assert.

* Undo missplaced semicolon in scheduler.h
This commit is contained in:
Bo Rydberg 2019-01-05 11:05:52 +01:00 committed by John Wellbelove
parent 5be9885845
commit b66b7b71f7

View File

@ -281,7 +281,7 @@ namespace etl
//*******************************************
void add_task(etl::task& task)
{
ETL_ASSERT(!task_list.full(), ETL_ERROR(etl::scheduler_too_many_tasks_exception))
ETL_ASSERT(!task_list.full(), ETL_ERROR(etl::scheduler_too_many_tasks_exception));
if (!task_list.full())
{