$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Demian Nave (demian_at_[hidden])
Date: 2008-02-26 22:52:19
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