2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-10 23:32:28 +00:00

Re-add bool fiber_manager::preserve_fpu() to header file.

This commit is contained in:
Nat Goodspeed
2015-05-11 05:46:26 -04:00
parent 765014daee
commit a4e77e502f
2 changed files with 2 additions and 1 deletions

View File

@@ -94,6 +94,7 @@ public:
std::chrono::high_resolution_clock::duration wait_interval() noexcept;
bool preserve_fpu() const;
void preserve_fpu( bool);
};

View File

@@ -251,7 +251,7 @@ fiber_manager::wait_interval() noexcept {
}
bool
fiber_manager::preserve_fpu() {
fiber_manager::preserve_fpu() const {
return preserve_fpu_;
}