$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Roland Schwarz (roland.schwarz_at_[hidden])
Date: 2006-10-06 10:06:15
Anthony Williams wrote:
> I don't like the atexit call for registering the destructors,
Why? You can't rely on the presence of any globally contructed
objects during atexit. So why should once_class object be different?
Also the MSVC compiler is doing just that for local static objects
dtors: scheduling a call to atexit.
Roland