yin parser CHANGE add support for typedef element
diff --git a/src/tree_schema_internal.h b/src/tree_schema_internal.h
index 76e5413..e90f8cc 100644
--- a/src/tree_schema_internal.h
+++ b/src/tree_schema_internal.h
@@ -89,12 +89,12 @@
  * @brief internal context for schema parsers
  */
 struct lys_parser_ctx {
-    struct ly_ctx *ctx;
-    uint64_t line;      /**< line number */
     struct ly_set tpdfs_nodes;
     struct ly_set grps_nodes;
-    uint64_t indent;    /**< current position on the line for YANG indentation */
     uint8_t mod_version; /**< module's version */
+    struct ly_ctx *ctx;
+    uint64_t line;      /**< line number */
+    uint64_t indent;    /**< current position on the line for YANG indentation */
 };
 
 /**