From b267362cc86d9270eb793158025e860f0eb94e3c Mon Sep 17 00:00:00 2001 From: Jakob Fischer Date: Sat, 13 Jun 2020 15:20:45 +0200 Subject: [PATCH] toml: Fixed implicit call --- src/plugins/toml/driver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/toml/driver.c b/src/plugins/toml/driver.c index 91bfcdee949..5bd79134e63 100644 --- a/src/plugins/toml/driver.c +++ b/src/plugins/toml/driver.c @@ -17,6 +17,7 @@ extern int yyparse (Driver * driver); extern int yylineno; extern void initializeLexer (FILE * file); +extern void clearLexer (void); static Driver * createDriver (Key * parent, KeySet * keys); static void destroyDriver (Driver * driver);