Merge remote-tracking branch 'origin/topic/timw/hilti-nolint-enum'

* origin/topic/timw/hilti-nolint-enum:
  Add nolint for enum size for HILTI_RT_ENUM use
This commit is contained in:
Tim Wojtulewicz 2025-07-17 08:40:49 -07:00
commit 6218643347
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
8.0.0-dev.680 | 2025-07-17 08:40:49 -0700
* Add nolint for enum size for HILTI_RT_ENUM use (Tim Wojtulewicz, Corelight)
8.0.0-dev.677 | 2025-07-16 17:46:48 +0200 8.0.0-dev.677 | 2025-07-16 17:46:48 +0200
* Spicy: Fix missing include. (Robin Sommer, Corelight) * Spicy: Fix missing include. (Robin Sommer, Corelight)

View file

@ -1 +1 @@
8.0.0-dev.677 8.0.0-dev.680

View file

@ -170,7 +170,7 @@ enum class ZeekTypeTag : uint8_t {
Void, Void,
}; };
HILTI_RT_ENUM(AnalyzerType, Undef, File, Packet, Protocol); HILTI_RT_ENUM(AnalyzerType, Undef, File, Packet, Protocol); // NOLINT(performance-enum-size)
extern TypePtr create_base_type(ZeekTypeTag tag); extern TypePtr create_base_type(ZeekTypeTag tag);