aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/BigBitVec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chilbert/BigBitVec.hpp')
-rw-r--r--chilbert/BigBitVec.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/chilbert/BigBitVec.hpp b/chilbert/BigBitVec.hpp
index 5b5f408..70a917b 100644
--- a/chilbert/BigBitVec.hpp
+++ b/chilbert/BigBitVec.hpp
@@ -482,15 +482,6 @@ grayCodeInv(CBigBitVec& value)
}
}
-inline std::ostream&
-operator<<(std::ostream& os, const CBigBitVec& vec)
-{
- for (size_t i = 0; i < vec.size(); ++i) {
- os << vec.test(vec.size() - i - 1);
- }
- return os;
-}
-
} // namespace chilbert
#endif