aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/SmallBitVec.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-19 17:51:42 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 14:49:45 +0200
commitc48d56bcc0c919007d712d8716c86714e387554b (patch)
tree60741b1bbf9da108303068d6e503c9e8cfce9a8b /chilbert/SmallBitVec.hpp
parent864a0cab22998cfd465f3dd2f0514f96c907ed95 (diff)
downloadchilbert-c48d56bcc0c919007d712d8716c86714e387554b.tar.gz
chilbert-c48d56bcc0c919007d712d8716c86714e387554b.tar.bz2
chilbert-c48d56bcc0c919007d712d8716c86714e387554b.zip
Document various bit vector types
Diffstat (limited to 'chilbert/SmallBitVec.hpp')
-rw-r--r--chilbert/SmallBitVec.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/chilbert/SmallBitVec.hpp b/chilbert/SmallBitVec.hpp
index f11dab0..96652e9 100644
--- a/chilbert/SmallBitVec.hpp
+++ b/chilbert/SmallBitVec.hpp
@@ -40,6 +40,7 @@ typedef uint64_t FBV_UINT;
#define FBV1S (~FBV_UINT{0})
#define FBVN1S(n) (n == FBV_BITS ? FBV1S : (FBV1 << n) - 1)
+/** A bit vector small enough to fit in a single word. */
class SmallBitVec
{
public: