aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/FixBitVec.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-19 10:56:38 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 14:48:11 +0200
commit07322274a3b88b0fcbaddd87cac4cca992c362cc (patch)
treeb164587c0efbf39a68dcc110f8fcfce0e839f6e6 /chilbert/FixBitVec.hpp
parentc99e14d12be7797984cca0614de28ecda86f4af4 (diff)
downloadchilbert-07322274a3b88b0fcbaddd87cac4cca992c362cc.tar.gz
chilbert-07322274a3b88b0fcbaddd87cac4cca992c362cc.tar.bz2
chilbert-07322274a3b88b0fcbaddd87cac4cca992c362cc.zip
Factor out print operator
Diffstat (limited to 'chilbert/FixBitVec.hpp')
-rw-r--r--chilbert/FixBitVec.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/chilbert/FixBitVec.hpp b/chilbert/FixBitVec.hpp
index 0eab0e9..d4313ba 100644
--- a/chilbert/FixBitVec.hpp
+++ b/chilbert/FixBitVec.hpp
@@ -379,15 +379,6 @@ grayCodeInv(CFixBitVec& value)
grayCodeInv<CFixBitVec::Rack>(value.rack());
}
-inline std::ostream&
-operator<<(std::ostream& os, const CFixBitVec& vec)
-{
- for (size_t i = 0; i < vec.size(); ++i) {
- os << vec.test(vec.size() - i - 1);
- }
- return os;
-}
-
} // namespace chilbert
#endif