CTPP2Compiler.hpp | CTPP2Compiler.hpp | |||
---|---|---|---|---|
skipping to change at line 673 | skipping to change at line 673 | |||
HashTable & oHashTable; | HashTable & oHashTable; | |||
/** Syscall cache */ | /** Syscall cache */ | |||
STLW::map<STLW::string, UINT_32> mSyscalls; | STLW::map<STLW::string, UINT_32> mSyscalls; | |||
/** Id of stored 0 to compare */ | /** Id of stored 0 to compare */ | |||
UINT_32 iZeroId; | UINT_32 iZeroId; | |||
/** Id of stored 1 to compare */ | /** Id of stored 1 to compare */ | |||
UINT_32 iOneId; | UINT_32 iOneId; | |||
/** Current block stack depth */ | /** Current block stack depth */ | |||
UINT_32 iCurrBlockStackDepth; | UINT_32 iCurrBlockStackDepth; | |||
/** Saved stack depths for blocks */ | ||||
STLW::vector<UINT_32> vSavedStackDepths; | ||||
}; | }; | |||
} // namespace CTPP | } // namespace CTPP | |||
#endif // _CTPP2_COMPILER_H__ | #endif // _CTPP2_COMPILER_H__ | |||
// End. | // End. | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 2 lines changed or added | |||
CTPP2SysHeaders.h | CTPP2SysHeaders.h | |||
---|---|---|---|---|
skipping to change at line 81 | skipping to change at line 81 | |||
#define CTPP_ESCAPE_BUFFER_LEN 1024 | #define CTPP_ESCAPE_BUFFER_LEN 1024 | |||
#define CTPP_MAX_TEMPLATE_RECURSION_DEPTH 1024 | #define CTPP_MAX_TEMPLATE_RECURSION_DEPTH 1024 | |||
#define ICONV_SUPPORT 1 | #define ICONV_SUPPORT 1 | |||
#define ICONV_DISCARD_ILSEQ 1 | #define ICONV_DISCARD_ILSEQ 1 | |||
#define ICONV_TRANSLITERATE 1 | #define ICONV_TRANSLITERATE 1 | |||
#define CTPP_VERSION "2.7.1" | #define CTPP_VERSION "2.7.2" | |||
#define CTPP_IDENT "Dzoraget" | #define CTPP_IDENT "Dzoraget" | |||
#define CTPP_MASTER_SITE_URL "http://ctpp.havoc.ru/" | #define CTPP_MASTER_SITE_URL "http://ctpp.havoc.ru/" | |||
/* #undef THROW_EXCEPTION_IN_COMPARATORS */ | /* #undef THROW_EXCEPTION_IN_COMPARATORS */ | |||
#endif /* _CTPP2_SYS_HEADERS_H__ */ | #endif /* _CTPP2_SYS_HEADERS_H__ */ | |||
/* End. */ | /* End. */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||