Boost logo

Boost :

Subject: Re: [boost] Review request: Require a SFINAE capable compiler
From: Stephen Kelly (steveire_at_[hidden])
Date: 2013-10-12 04:48:31


On 10/12/2013 10:06 AM, Stephen Kelly wrote:
> // versions check:
> // we don't support Metrowerks prior to version 5.3:
> -#if __MWERKS__ < 0x2301
> +#if __MWERKS__ < 0x3207
> # error "Compiler not supported or configured - please reconfigure"
> #endif
> //

I've fixed this locally to be

 // versions check:
-// we don't support Metrowerks prior to version 5.3:
-#if __MWERKS__ < 0x2301
+// we don't support Metrowerks prior to version 9.0:
+#if __MWERKS__ < 0x3200
 # error "Compiler not supported or configured - please reconfigure"
 #endif

Thanks,

Steve.


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