Move a few low-use classes to namespaces

This commit is contained in:
Tim Wojtulewicz 2020-07-21 16:19:14 -07:00
parent 886fc102b8
commit c9ab1f93e7
53 changed files with 252 additions and 122 deletions

View file

@ -7,6 +7,8 @@
#include "IntSet.h"
namespace zeek::detail {
void IntSet::Expand(unsigned int i)
{
unsigned int newsize = i / 8 + 1;
@ -19,3 +21,5 @@ void IntSet::Expand(unsigned int i)
size = newsize;
set = newset;
}
} // namespace zeek::detail