routerparse.h: include parsecommon.h when exposing token table.

Without this include, our compilation depends more on include order.
This commit is contained in:
Nick Mathewson 2019-12-16 13:13:13 -05:00
parent 774d1092fd
commit 887bf05c24

View file

@ -41,6 +41,7 @@ void routerparse_init(void);
void routerparse_free_all(void);
#ifdef EXPOSE_ROUTERDESC_TOKEN_TABLE
#include "feature/dirparse/parsecommon.h"
extern const struct token_rule_t routerdesc_token_table[];
#endif