From 81044b4233fbb2999ab81003abd99ca52c012652 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Sat, 3 Jul 2004 10:31:01 +0000 Subject: [PATCH] Metrowerks workaround added [SVN r23322] --- include/boost/algorithm/string/config.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/algorithm/string/config.hpp b/include/boost/algorithm/string/config.hpp index 6fe4de9..253b2f9 100644 --- a/include/boost/algorithm/string/config.hpp +++ b/include/boost/algorithm/string/config.hpp @@ -22,4 +22,9 @@ #define BOOST_STRING_TYPENAME BOOST_DEDUCED_TYPENAME #endif +// Metrowerks workaround +#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x +#pragma parse_func_templ off +#endif + #endif // BOOST_STRING_CONFIG_HPP