mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Format code with clang-format
This patch formats files not conforming to the C++ formatting with `clang-format`.
This commit is contained in:
parent
dafc9691c5
commit
4e16037acd
1 changed files with 6 additions and 6 deletions
|
@ -89,9 +89,9 @@ static VectorTypePtr base_vector_type__CPP(const VectorTypePtr& vt)
|
|||
#define VEC_OP1_WITH_DOUBLE(name, op) \
|
||||
VEC_OP1( \
|
||||
name, op, case TYPE_INTERNAL_DOUBLE \
|
||||
: \
|
||||
{ \
|
||||
VEC_OP1_KERNEL(AsDouble, DoubleVal, op) break; \
|
||||
: { \
|
||||
VEC_OP1_KERNEL(AsDouble, DoubleVal, op) \
|
||||
break; \
|
||||
})
|
||||
|
||||
// The unary operations supported for vectors.
|
||||
|
@ -152,9 +152,9 @@ VEC_OP1(comp, ~, )
|
|||
#define VEC_OP2_WITH_DOUBLE(name, op) \
|
||||
VEC_OP2( \
|
||||
name, op, case TYPE_INTERNAL_DOUBLE \
|
||||
: \
|
||||
{ \
|
||||
VEC_OP2_KERNEL(AsDouble, DoubleVal, op) break; \
|
||||
: { \
|
||||
VEC_OP2_KERNEL(AsDouble, DoubleVal, op) \
|
||||
break; \
|
||||
})
|
||||
|
||||
// The binary operations supported for vectors.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue