From 3f8c89fde4538326f1f57b3b26aae33823ad9390 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 10 Feb 2005 12:53:20 +0000 Subject: [PATCH] Changed include order to fix Borland 5.5.1 compiler errors (and yes just changing the order is enough to fix the issue - it should really make no difference). [SVN r27307] --- include/boost/type_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits.hpp b/include/boost/type_traits.hpp index eec8f7f..08bb5a1 100644 --- a/include/boost/type_traits.hpp +++ b/include/boost/type_traits.hpp @@ -68,8 +68,8 @@ #include "boost/type_traits/remove_reference.hpp" #include "boost/type_traits/remove_volatile.hpp" #include "boost/type_traits/type_with_alignment.hpp" -#include "boost/type_traits/aligned_storage.hpp" #include "boost/type_traits/function_traits.hpp" +#include "boost/type_traits/aligned_storage.hpp" #include "boost/type_traits/ice.hpp"