From 9e2868f8e27194ed1eca1cbb62289043c61c45ca Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 25 Jan 2025 23:10:41 +0200 Subject: [PATCH] Reorder includes --- include/boost/array.hpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/include/boost/array.hpp b/include/boost/array.hpp index 4b76a15..2a3c304 100644 --- a/include/boost/array.hpp +++ b/include/boost/array.hpp @@ -1,3 +1,6 @@ +#ifndef BOOST_ARRAY_HPP_INCLUDED +#define BOOST_ARRAY_HPP_INCLUDED + /* The following code declares class array, * an STL container (as wrapper) for arrays of constant size. * @@ -28,8 +31,6 @@ * * Jan 29, 2004 */ -#ifndef BOOST_ARRAY_HPP -#define BOOST_ARRAY_HPP #include #include @@ -41,16 +42,14 @@ # pragma warning(disable:4610) // warning C4610: class 'boost::array' can never be instantiated - user defined constructor required #endif -#include -#include -#include #include #include #include - #include #include - +#include +#include +#include namespace boost { @@ -492,4 +491,4 @@ namespace std { # pragma warning(pop) #endif -#endif /*BOOST_ARRAY_HPP*/ +#endif // #ifndef BOOST_ARRAY_HPP_INCLUDED