$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [contract] _NOEXCEPT errors in <ostream> for Clang 5.0 C++1z on Teeks Linux
From: Lorenzo Caminiti (lorcaminiti_at_[hidden])
Date: 2017-11-20 02:48:49
On Sun, Nov 19, 2017 at 6:22 AM, Tom Kent via Boost
<boost_at_[hidden]> wrote:
> Is there some minimal
> source file that produces the same error I can try running to investigate
> further?
I can't be sure but from what I saw in the error message it seems the
error is raised as soon as <ostream> is included so I'd expect the
following to reproduce the error already:
#include <ostream>
int main() {
return 0;
}
--Lorenzo