summaryrefslogtreecommitdiff
path: root/boost/context/execution_context_v1.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/context/execution_context_v1.hpp')
-rw-r--r--boost/context/execution_context_v1.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/boost/context/execution_context_v1.hpp b/boost/context/execution_context_v1.hpp
index 73008e63ab..15d3cb3efe 100644
--- a/boost/context/execution_context_v1.hpp
+++ b/boost/context/execution_context_v1.hpp
@@ -440,30 +440,10 @@ public:
return nullptr == ptr_.get();
}
- bool operator==( execution_context const& other) const noexcept {
- return ptr_ == other.ptr_;
- }
-
- bool operator!=( execution_context const& other) const noexcept {
- return ptr_ != other.ptr_;
- }
-
bool operator<( execution_context const& other) const noexcept {
return ptr_ < other.ptr_;
}
- bool operator>( execution_context const& other) const noexcept {
- return other.ptr_ < ptr_;
- }
-
- bool operator<=( execution_context const& other) const noexcept {
- return ! ( * this > other);
- }
-
- bool operator>=( execution_context const& other) const noexcept {
- return ! ( * this < other);
- }
-
template< typename charT, class traitsT >
friend std::basic_ostream< charT, traitsT > &
operator<<( std::basic_ostream< charT, traitsT > & os, execution_context const& other) {