unnecessary template keyword

master
Daniel Kolesa 2017-03-17 02:16:06 +01:00
parent 043e38601f
commit 75e4ac1cb7
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ public:
this->set_dead();
return;
}
this->template make_context<coroutine<R(A...)>>(sa);
this->make_context<coroutine<R(A...)>>(sa);
}
template<typename SA = default_stack>
@ -477,7 +477,7 @@ public:
this->set_dead();
return;
}
this->template make_context<generator<T>>(sa);
this->make_context<generator<T>>(sa);
/* generate an initial value */
resume();
}