$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Bronek Kozicki (brok_at_[hidden])
Date: 2005-08-10 13:34:16
Hartmut Kaiser wrote:
> This is the dreaded buffer overrun run bug of VC7.1. It occurs whenever the
> code gets too complex for the compiler. AFAIK, there is no known workaround
disabling few compiler options sometimes helps. These are:
- whole program optimization (/GL) ,
- minimal rebuild /Gm
- edit and continue /ZI (use /Zi or /Z7 instead)
B.