From: John Maddock (john_at_[hidden])
Date: 2006-06-23 05:33:37


Gennaro Prota wrote:
> Hi,
>
> the final lines of digitalmars.hpp read:
>
> #if (__DMC__ < 0x840)
> # if defined(BOOST_ASSERT_CONFIG)
> # error "Unknown compiler version - please run the configure tests
> and report the results"
> # endif
> #endif
>
> Shouldn't it be something like:
>
> #if __DMC__ < ???
> #error "Compiler not supported or configured - please reconfigure"
> #endif
> //
> // last known and checked version is ...:
> #if (__DMC__ > 0x840)
> # if defined(BOOST_ASSERT_CONFIG)
> # error "Unknown compiler version - please run the configure tests
> and report the results"
> # endif

Thanks, fixed.

John.