mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Move a few low-use classes to namespaces
This commit is contained in:
parent
886fc102b8
commit
c9ab1f93e7
53 changed files with 252 additions and 122 deletions
|
@ -8,6 +8,8 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
class IntSet {
|
||||
public:
|
||||
// n is a hint for the value of the largest integer.
|
||||
|
@ -64,3 +66,7 @@ inline void IntSet::Clear()
|
|||
{
|
||||
memset(set, 0, size);
|
||||
}
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
||||
using IntSet [[deprecated("Remove in v4.1. Use zeek::detail::IntSet.")]] = zeek::detail::IntSet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue