X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ab73d1ffd4233fbfc97c53ba5160f6e0367196a4..71f9f56c6dee0f8b1e7f6df93a56f95f4974d4d2:/projects/sgconf/parser_state.h?ds=inline

diff --git a/projects/sgconf/parser_state.h b/projects/sgconf/parser_state.h
index 1482133e..22ad794f 100644
--- a/projects/sgconf/parser_state.h
+++ b/projects/sgconf/parser_state.h
@@ -21,17 +21,17 @@
 #ifndef __STG_SGCONF_PARSER_STATE_H__
 #define __STG_SGCONF_PARSER_STATE_H__
 
-#include "config.h"
-
 namespace SGCONF
 {
 
 struct PARSER_STATE
 {
-    CONFIG config;
-    bool result;
+    PARSER_STATE(bool s, int c, char ** v) : stop(s), argc(c), argv(v) {}
+    bool stop;
     int argc;
     char ** argv;
 };
 
 }
+
+#endif