23 Jun
                
                    2006
                
            
            
                23 Jun
                
                '06
                
            
            
            
        
    
                11:33 a.m.
            
        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.