fixes for vector operations

This commit is contained in:
Vern Paxson 2021-12-10 09:32:42 -08:00
parent 6788be94c9
commit ac74943f26
2 changed files with 20 additions and 3 deletions

View file

@ -80,4 +80,9 @@ extern VectorValPtr vec_coerce_to_bro_int_t__CPP(const VectorValPtr& v, TypePtr
extern VectorValPtr vec_coerce_to_bro_uint_t__CPP(const VectorValPtr& v, TypePtr targ);
extern VectorValPtr vec_coerce_to_double__CPP(const VectorValPtr& v, TypePtr targ);
// A dummy function used during code generation for unsupported operations
// that mix vector and scalar arguments. We don't define it in RuntimeVec.cc
// so that it'll generate a linking error.
extern VectorValPtr vec_scalar_mixed_with_vector();
} // namespace zeek::detail