From f4427d6e6061d0aa559bf6bd754f1eee2a9b3580 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Thu, 1 Apr 2004 22:37:29 +0000 Subject: [PATCH] Syntax error fixed [SVN r22579] --- include/boost/algorithm/string/sequence_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/algorithm/string/sequence_traits.hpp b/include/boost/algorithm/string/sequence_traits.hpp index 9265897..eae83de 100644 --- a/include/boost/algorithm/string/sequence_traits.hpp +++ b/include/boost/algorithm/string/sequence_traits.hpp @@ -160,7 +160,7 @@ namespace boost { static T* t; public: BOOST_STATIC_CONSTANT(bool, value=( - sizeof(has_const_time_erase))==sizeof(yes_type) ) ); + sizeof(has_const_time_erase(t))==sizeof(yes_type) ) ); #else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION public: BOOST_STATIC_CONSTANT(bool, value=false);