Boost logo

Boost :

From: Geert Ceuppens (geert_ceuppens_at_[hidden])
Date: 2003-09-22 08:47:12


There is a line missing from boost\static_assert.hpp:
 
template <bool x> struct STATIC_ASSERTION_FAILURE;
template <> struct STATIC_ASSERTION_FAILURE<true> { enum { value = 1 }; };
// The following line was missing and therefore caused a compile failure in ublas under MSVC7.1:
template <> struct STATIC_ASSERTION_FAILURE<false> { enum { value = 0 }; };
 
Please add this to the distribution
 
Rgds Geert.

---------------------------------
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software



Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk