Boost logo

Boost Users :

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


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net