HltRoutingBitsFilter: Fix default require mask
default used to be three times 0xFFFF
, when it should have been three times 0xFFFFFFFF
instead.
(as spotted by @rmatev, see !458 (diffs))
So now it is three times ~0u
so it is set to 'all one bits' regardless of the word size.