X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ab73d1ffd4233fbfc97c53ba5160f6e0367196a4..cf7325e6b3244c7174424fa71e1972523324a69b:/projects/sgconf/parser_state.h

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