diff --git a/include/boost/concept_archetype.hpp b/include/boost/concept_archetype.hpp index b8a01be..9cf0166 100644 --- a/include/boost/concept_archetype.hpp +++ b/include/boost/concept_archetype.hpp @@ -48,7 +48,7 @@ namespace boost { class static_object { public: static T& get() { - char d[sizeof(T)]; + static char d[sizeof(T)]; return *reinterpret_cast(d); } }; diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp index 86e9dd4..3e6fa20 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -5,13 +5,16 @@ // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. // +// Revision History: +// 01 April 2001: Modified to use new header. (JMaddock) +// #ifndef BOOST_CONCEPT_CHECKS_HPP #define BOOST_CONCEPT_CHECKS_HPP #include #include #include -#include +#include #include #if defined(BOOST_MSVC) || defined(__BORLANDC__)