Val: remove the unnecessary BroValUnion typedef

This commit is contained in:
Max Kellermann 2020-02-07 11:24:52 +01:00
parent e3c0da2e15
commit 99f1804c62

View file

@ -61,7 +61,7 @@ class TableEntryVal;
class RE_Matcher; class RE_Matcher;
typedef union { union BroValUnion {
// Used for bool, int, enum. // Used for bool, int, enum.
bro_int_t int_val; bro_int_t int_val;
@ -86,7 +86,7 @@ typedef union {
vector<Val*>* vector_val; vector<Val*>* vector_val;
} BroValUnion; };
class Val : public BroObj { class Val : public BroObj {
public: public: