Commit 6de80e7c authored by Dominik Charousset's avatar Dominik Charousset

fixed missing namespace prefix

parent 3efb67a3
...@@ -38,9 +38,9 @@ void coroutine(void* worker) { (*reinterpret_cast<pseudo_worker*>(worker))(); } ...@@ -38,9 +38,9 @@ void coroutine(void* worker) { (*reinterpret_cast<pseudo_worker*>(worker))(); }
int main() { int main() {
CPPA_TEST(test__yield_interface); CPPA_TEST(test__yield_interface);
# ifdef CPPA_DISABLE_CONTEXT_SWITCHING # ifdef CPPA_DISABLE_CONTEXT_SWITCHING
cout << "WARNING: context switching was explicitly disabled using " std::cout << "WARNING: context switching was explicitly disabled using "
"CPPA_DISABLE_CONTEXT_SWITCHING" "CPPA_DISABLE_CONTEXT_SWITCHING"
<< endl; << std::endl;
# else # else
fiber fself; fiber fself;
pseudo_worker worker; pseudo_worker worker;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment