From c20a976f346150c63cb93580eccac06b0058a7a0 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Fri, 13 Feb 2009 17:52:22 +0100 Subject: [PATCH] Fix for newer boost versions (tested 1.37.0 and 1.38.0) --- examples/minimalistic-stub-once.hxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/examples/minimalistic-stub-once.hxx b/examples/minimalistic-stub-once.hxx index 1c2ffcb..f82f95e 100644 --- a/examples/minimalistic-stub-once.hxx +++ b/examples/minimalistic-stub-once.hxx @@ -11,7 +11,7 @@ void extended_type_info_test() { cmd_group_example* t=new testfunc_cmd(); const boost::serialization::extended_type_info * true_type - = boost::serialization::type_info_implementation::type::get_derived_extended_type_info(*t); + = boost::serialization::type_info_implementation::type::get_const_instance().get_derived_extended_type_info(*t); // note:if this exception is thrown, be sure that derived pointer // is either regsitered or exported. assert(NULL != true_type); -- 1.7.1