From 2fb242eae184f3c0fc40d2f367424519d66ee449 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 11 Feb 2004 04:26:53 +0000 Subject: [PATCH] Work around CLR bug in .NET 2003 [SVN r22234] --- include/boost/function/function_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 2729c6f..110ead2 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -486,7 +486,7 @@ namespace detail { return f->empty(); } - inline bool has_empty_target(...) + inline bool has_empty_target(const void*) { return false; }