From aec952125146ef754b755f75bf9281d16e837155 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Wed, 18 Dec 2013 23:41:54 -0800 Subject: Visual Studio port. --- src/Task.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Task.cc') diff --git a/src/Task.cc b/src/Task.cc index b294fa9..9bf7c5b 100644 --- a/src/Task.cc +++ b/src/Task.cc @@ -30,7 +30,7 @@ void Balau::Task::setup(TaskMan * taskMan, void * stack) { m_stack = stack; coro_create(&m_ctx, coroutineTrampoline, this, m_stack, size); #else - Assert(!stack, "We shouldn't allocate stacks with Fibers"); + IAssert(!stack, "We shouldn't allocate stacks with Fibers"); m_stack = NULL; m_fiber = CreateFiber(size, coroutineTrampoline, this); #endif -- cgit v1.2.3