mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Fix clang-tidy performance-enum-size warnings in headers
This commit is contained in:
parent
89ac0cb418
commit
f386deba94
76 changed files with 184 additions and 136 deletions
|
@ -18,12 +18,12 @@ class IPPrefix;
|
|||
class File;
|
||||
class Type;
|
||||
|
||||
enum DescType {
|
||||
enum DescType : uint8_t {
|
||||
DESC_READABLE,
|
||||
DESC_BINARY,
|
||||
};
|
||||
|
||||
enum DescStyle {
|
||||
enum DescStyle : uint8_t {
|
||||
STANDARD_STYLE,
|
||||
RAW_STYLE,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue