$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [config][type_traits] Support for final keyword in Boost?
From: Marcel Raad (raad_at_[hidden])
Date: 2014-08-16 11:01:54
AgustÃn K-ballo Bergé <kaballo86 <at> hotmail.com> writes:
> Note that MSVC will sooner or later have to implement `std::is_final`,
> so "use GCC's native features" does not sound compelling.
MSVC 14 has std::is_final, implemented with
(__is_class || __is_union) && (__is_final || __is_sealed).