mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
binpac: Fixed compiler complaining about recursive function.
This commit is contained in:
parent
e3e4453dac
commit
a9d294528d
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ public:
|
|||
explicit PacPrimitive(PrimitiveType type) : type_(type) {}
|
||||
virtual ~PacPrimitive() {}
|
||||
|
||||
PrimitiveType type() const { return type(); }
|
||||
PrimitiveType type() const { return type_; }
|
||||
|
||||
virtual string ToCode(Env *env) = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue