From 11d50ecb9f48791bc66751eafa8789d8f08c41f2 Mon Sep 17 00:00:00 2001 From: Bryce Adelstein-Lelbach Date: Fri, 14 Jan 2011 02:35:58 +0000 Subject: [PATCH] Replacing the use of with across Boost. On Linux, GNU's libstdc++, which is the default stdlib for icc and clang, cannot parse the header in version 4.5+ (which thankfully neither compiler advises the use of yet), as it's original C++98-friendly implementation has been replaced with a gnu++0x implementation. is a portable implementation of , providing boost::detail::setfill, boost::detail::setbase, boost::detail::setw, boost::detail::setprecision, boost::detail::setiosflags and boost::detail::resetiosflags. [SVN r68140] --- call_traits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call_traits_test.cpp b/call_traits_test.cpp index 72852c4..ae1b93a 100644 --- a/call_traits_test.cpp +++ b/call_traits_test.cpp @@ -13,7 +13,7 @@ // Enabled extra tests for VC6. #include -#include +#include #include #include #include