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

@ -6,9 +6,10 @@
#include <cstdlib>
using namespace Bro;
using namespace std;
namespace zeek {
void UID::Set(bro_uint_t bits, const uint64_t* v, size_t n)
{
initialized = true;
@ -40,3 +41,5 @@ std::string UID::Base62(std::string prefix) const
return prefix;
}
} // namespace zeek