fix(query): fix syntax error on windows platform

This commit is contained in:
Haojun Liao 2022-09-03 10:05:57 +08:00
parent 86348e7439
commit b159d3cdf5
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ struct SRBTreeNode {
SRBTreeNode *parent;
SRBTreeNode *left;
SRBTreeNode *right;
uint8_t payload[0];
uint8_t payload[];
};
struct SRBTree {