2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-19 14:22:23 +00:00

declare own cv_status instead using std::cv_status

This commit is contained in:
Oliver Kowalke
2015-12-21 17:21:08 +01:00
parent e39216055c
commit e72e4b60e1

View File

@@ -33,7 +33,10 @@
namespace boost {
namespace fibers {
using cv_status = std::cv_status;
enum class cv_status {
no_timeout = 1,
timeout
};
class BOOST_FIBERS_DECL condition_variable_any {
private: