91a92,98
> /*
> * Optionally disable the sanity check
> * on the size of the transmitList. The
> * sanity check will be enabled by default.
> */
> bool _disableSanityCheck;
>
125a133,134
> * @param disable_sanity_check Flag used to disable the sanity check
> * on the size of the transmitList. The check is enabled by default.
127c136,137
< PacketQueue(EventManager& _em, const std::string& _label);
---
> PacketQueue(EventManager& _em, const std::string& _label,
> bool disable_sanity_check = false);
189a200,207
> /**
> * This allows a user to explicitly disable the sanity check
> * on the size of the transmitList, which is enabled by default.
> * Users must use this function to explicitly disable the sanity
> * check.
> */
> void disableSanityCheck() { _disableSanityCheck = true; }
>