X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/64b687f8ec36a103865044613cb0f42f98aeda3a..078ab6852ff1674f99d03fd697018a96bdb12d81:/projects/sgconf/parser_state.h?ds=sidebyside

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