]> granicus.if.org Git - onig/commitdiff
refactoring
authorK.Kosako <kosako@sofnec.co.jp>
Tue, 30 Jul 2019 05:23:56 +0000 (14:23 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Tue, 30 Jul 2019 05:23:56 +0000 (14:23 +0900)
src/regcomp.c
src/regparse.h

index e624c6047d762ffd32d47af554813367b956078f..6bce25296d3a11bb8e9862bdf77753e0bae4adfb 100644 (file)
@@ -974,7 +974,7 @@ compile_length_quantifier_node(QuantNode* qn, regex_t* reg)
 {
   int len, mod_tlen;
   int infinite = IS_INFINITE_REPEAT(qn->upper);
-  enum BodyEmpty emptiness = qn->emptiness;
+  enum BodyEmptyType emptiness = qn->emptiness;
   int tlen = compile_length_tree(NODE_QUANT_BODY(qn), reg);
 
   if (tlen < 0) return tlen;
@@ -1048,7 +1048,7 @@ compile_quantifier_node(QuantNode* qn, regex_t* reg, ScanEnv* env)
 {
   int i, r, mod_tlen;
   int infinite = IS_INFINITE_REPEAT(qn->upper);
-  enum BodyEmpty emptiness = qn->emptiness;
+  enum BodyEmptyType emptiness = qn->emptiness;
   int tlen = compile_length_tree(NODE_QUANT_BODY(qn), reg);
 
   if (tlen < 0) return tlen;
@@ -4031,7 +4031,7 @@ expand_case_fold_string(Node* node, regex_t* reg, int state)
 }
 
 #ifdef USE_INSISTENT_CHECK_CAPTURES_IN_EMPTY_REPEAT
-static enum BodyEmpty
+static enum BodyEmptyType
 quantifiers_memory_node_info(Node* node)
 {
   int r = BODY_IS_EMPTY_POSSIBILITY;
index a2160a42b3618934583877ea4515c9aa58033b33..231f7b5c8ce3a1b9d33fd121dbfe764a23e44776 100644 (file)
@@ -66,7 +66,7 @@ enum GimmickType {
 #endif
 };
 
-enum BodyEmpty {
+enum BodyEmptyType {
   BODY_IS_NOT_EMPTY             = 0,
   BODY_IS_EMPTY_POSSIBILITY     = 1,
   BODY_IS_EMPTY_POSSIBILITY_MEM = 2,
@@ -101,7 +101,7 @@ typedef struct {
   int lower;
   int upper;
   int greedy;
-  enum BodyEmpty emptiness;
+  enum BodyEmptyType emptiness;
   struct _Node* head_exact;
   struct _Node* next_head_exact;
   int is_refered;     /* include called node. don't eliminate even if {0} */