Home
News
Download
Docs
Bugs
unassigned
unresolved
search
Contact
Tasks
Code
Name Password
register
Lost login?
typedef __time64_t time_t; makes the parser crash. I need to investigate more on what happens in the library as this token makes synopsis crash on an uninitialized string. In the platform SDK, __time64_t is typedefed as: #ifndef _TIME64_T_DEFINED #if _INTEGRAL_MAX_BITS >= 64 typedef __int64 __time64_t; /* 64-bit time value */ #endif #define _TIME64_T_DEFINED #endif Which would suggest 64 bit support. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_time.asp speaks about windows only compatibility.
The Lexer knows the '__int64' token (Token::INT64), which gets special treatment by the Parser. There may be a bug hidden that never got exposed due to MSVC being not frequently used with Synopsis thus far.