diff --git a/fundamentals/src/bitflag.rs b/fundamentals/src/bitflag.rs index 6de348c..1fdbbdd 100644 --- a/fundamentals/src/bitflag.rs +++ b/fundamentals/src/bitflag.rs @@ -1,13 +1,11 @@ //! Bitflag rust Implementation. //! -//! This implementation is inspired and taken from -//! the awesome amplify library -//! //! Author: Vincenzo Palazzo . use std::vec::Vec; use crate::core::{FromWire, ToWire}; +// FIXME: rename to bitvector :) #[derive(Clone, Debug)] pub struct BitFlag { pub len: u16,