27 Feb
2008
27 Feb
'08
3:52 a.m.
You could also try wrapping the calls to crc_32_type and process_bytes in a #pragma runtime_check: #ifdef _DEBUG #pragma runtime_checks("c", off) #endif [ call to crc_32_type or process_bytes] #ifdef _DEBUG #pragma runtime_checks("c", restore) #endif It's ugly, but it might solve the problem, at least temporarily. Hope this helps, Demian