mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-29 13:58:44 +08:00
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:
parent
5be9885845
commit
b66b7b71f7
@ -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())
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user