Reformat the world

This commit is contained in:
Tim Wojtulewicz 2021-09-16 15:35:39 -07:00
parent 194cb24547
commit b2f171ec69
714 changed files with 35149 additions and 35203 deletions

View file

@ -9,7 +9,8 @@
using namespace std;
namespace zeek {
namespace zeek
{
void UID::Set(bro_uint_t bits, const uint64_t* v, size_t n)
{
@ -36,11 +37,11 @@ std::string UID::Base62(std::string prefix) const
if ( ! initialized )
reporter->InternalError("use of uninitialized UID");
char tmp[sizeof(uid) * 8 + 1]; // enough for even binary representation
char tmp[sizeof(uid) * 8 + 1]; // enough for even binary representation
for ( size_t i = 0; i < BRO_UID_LEN; ++i )
prefix.append(util::uitoa_n(uid[i], tmp, sizeof(tmp), 62));
return prefix;
}
} // namespace zeek
} // namespace zeek