From caef31de2a9f02c6e978ac5b085442dda2c22a2c Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 26 Jun 2001 13:40:36 +0000 Subject: [PATCH] config.hpp: - Comeau 4.2.45.2 does not correctly handle function pointers to to functions with default arguments. Use virtual function implementation for Boost.Function. [SVN r10432] --- include/boost/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index 54c36c02..7663585c 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -306,7 +306,7 @@ // Comeau C++ ----------------------------------------------------------------// # elif defined __COMO__ -# if __COMO_VERSION__ <= 4244 +# if __COMO_VERSION__ <= 4245 # define BOOST_FUNCTION_USE_VIRTUAL_FUNCTIONS # endif