mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 11:15:50 +00:00
25 lines
673 B
Diff
25 lines
673 B
Diff
From 5cd9d09d960fa489a0c4379880cd7615b1c16e55 Mon Sep 17 00:00:00 2001
|
|
From: CJ Cobb <ccobb@ripple.com>
|
|
Date: Wed, 10 Aug 2022 12:30:01 -0400
|
|
Subject: [PATCH] Remove bitset operator !=
|
|
|
|
---
|
|
src/ripple/protocol/Feature.h | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/src/ripple/protocol/Feature.h b/src/ripple/protocol/Feature.h
|
|
index b3ecb099b..6424be411 100644
|
|
--- a/src/ripple/protocol/Feature.h
|
|
+++ b/src/ripple/protocol/Feature.h
|
|
@@ -126,7 +126,6 @@ class FeatureBitset : private std::bitset<detail::numFeatures>
|
|
public:
|
|
using base::bitset;
|
|
using base::operator==;
|
|
- using base::operator!=;
|
|
|
|
using base::all;
|
|
using base::any;
|
|
--
|
|
2.32.0
|
|
|