summaryrefslogtreecommitdiff
path: root/boost/coroutine/detail/pull_coroutine_synthesized.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/coroutine/detail/pull_coroutine_synthesized.hpp')
-rw-r--r--boost/coroutine/detail/pull_coroutine_synthesized.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/boost/coroutine/detail/pull_coroutine_synthesized.hpp b/boost/coroutine/detail/pull_coroutine_synthesized.hpp
index 952d50c113..313de3c2dd 100644
--- a/boost/coroutine/detail/pull_coroutine_synthesized.hpp
+++ b/boost/coroutine/detail/pull_coroutine_synthesized.hpp
@@ -30,9 +30,9 @@ private:
public:
pull_coroutine_synthesized( coroutine_context * caller,
coroutine_context * callee,
- bool unwind, bool preserve_fpu,
+ bool unwind,
R * result) :
- impl_t( caller, callee, unwind, preserve_fpu, result)
+ impl_t( caller, callee, unwind, result)
{}
void destroy() {}
@@ -47,9 +47,9 @@ private:
public:
pull_coroutine_synthesized( coroutine_context * caller,
coroutine_context * callee,
- bool unwind, bool preserve_fpu,
+ bool unwind,
R * result) :
- impl_t( caller, callee, unwind, preserve_fpu, result)
+ impl_t( caller, callee, unwind, result)
{}
void destroy() {}
@@ -64,8 +64,8 @@ private:
public:
pull_coroutine_synthesized( coroutine_context * caller,
coroutine_context * callee,
- bool unwind, bool preserve_fpu) :
- impl_t( caller, callee, unwind, preserve_fpu)
+ bool unwind) :
+ impl_t( caller, callee, unwind)
{}
inline void destroy() {}