summaryrefslogtreecommitdiff
path: root/boost/context/execution_context_v2_void.ipp
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2019-12-05 15:18:43 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2019-12-05 15:18:43 +0900
commit5ce2ccf2f23c6d3de4c79f216f57ca6f2a18ed16 (patch)
treebbee48efb9867d19ac3fdd84ba714c7af326cd53 /boost/context/execution_context_v2_void.ipp
parentb8cf34c691623e4ec329053cbbf68522a855882d (diff)
downloadboost-5ce2ccf2f23c6d3de4c79f216f57ca6f2a18ed16.tar.gz
boost-5ce2ccf2f23c6d3de4c79f216f57ca6f2a18ed16.tar.bz2
boost-5ce2ccf2f23c6d3de4c79f216f57ca6f2a18ed16.zip
Imported Upstream version 1.68.0upstream/1.68.0
Diffstat (limited to 'boost/context/execution_context_v2_void.ipp')
-rw-r--r--boost/context/execution_context_v2_void.ipp20
1 files changed, 0 insertions, 20 deletions
diff --git a/boost/context/execution_context_v2_void.ipp b/boost/context/execution_context_v2_void.ipp
index f262a0c9c9..eb291d2225 100644
--- a/boost/context/execution_context_v2_void.ipp
+++ b/boost/context/execution_context_v2_void.ipp
@@ -205,30 +205,10 @@ public:
return nullptr == fctx_;
}
- bool operator==( execution_context const& other) const noexcept {
- return fctx_ == other.fctx_;
- }
-
- bool operator!=( execution_context const& other) const noexcept {
- return fctx_ != other.fctx_;
- }
-
bool operator<( execution_context const& other) const noexcept {
return fctx_ < other.fctx_;
}
- bool operator>( execution_context const& other) const noexcept {
- return other.fctx_ < fctx_;
- }
-
- 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) {