소스 검색

Change context to uint64_t

One-line fix
tags/v0.4
David Winegar 9 년 전
부모
커밋
c802b1f814
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      mwparserfromhell/parser/tokenizer.h

+ 2
- 1
mwparserfromhell/parser/tokenizer.h 파일 보기

@@ -53,7 +53,8 @@ static const char MARKERS[] = {
#define MAX_BRACES 255
#define MAX_ENTITY_SIZE 8

static int route_state = 0, route_context = 0;
static int route_state = 0;
static uint64_t route_context = 0;
#define BAD_ROUTE route_state
#define BAD_ROUTE_CONTEXT route_context
#define FAIL_ROUTE(context) route_state = 1; route_context = context


불러오는 중...
취소
저장