$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Doug Gregor (gregod_at_[hidden])
Date: 2001-02-25 00:41:08
Hello,
The attached patch for config.hpp (diff'd against version 1.46) does several
things:
a) Adds support for Irix MIPSpro 7.3.0
b) Adds BOOST_NO_VOID_RETURNS for compilers that complain about the
construct:
void f() {}
void g() { return f(); }
So far, I only know of the two compilers (MIPSpro 7.3.0 and MSVC) that
complain about this. GCC 2.95.2/3.0 and Como 4.2.44b3 handle it correctly.
c) Changes "#include <cstddef>" to "#include <boost/pending/stddef.hpp>"
(for MIPSpro 7.3.0)
Doug