X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ae21e8d6ad32d0bf3517127aef5cd8129b7507aa..9b3f8c7252b92a7b32996aa3c2b5e5c16361c82d:/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