File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change
1
+ #ifndef BOOST_ARRAY_HPP_INCLUDED
2
+ #define BOOST_ARRAY_HPP_INCLUDED
3
+
1
4
/* The following code declares class array,
2
5
* an STL container (as wrapper) for arrays of constant size.
3
6
*
28
31
*
29
32
* Jan 29, 2004
30
33
*/
31
- #ifndef BOOST_ARRAY_HPP
32
- #define BOOST_ARRAY_HPP
33
34
34
35
#include < boost/config.hpp>
35
36
#include < boost/config/workaround.hpp>
41
42
# pragma warning(disable:4610) // warning C4610: class 'boost::array<T,N>' can never be instantiated - user defined constructor required
42
43
#endif
43
44
44
- #include < cstddef>
45
- #include < iterator>
46
- #include < stdexcept>
47
45
#include < boost/assert.hpp>
48
46
#include < boost/core/invoke_swap.hpp>
49
47
#include < boost/static_assert.hpp>
50
-
51
48
#include < boost/throw_exception.hpp>
52
49
#include < algorithm>
53
-
50
+ #include < iterator>
51
+ #include < stdexcept>
52
+ #include < cstddef>
54
53
55
54
namespace boost {
56
55
@@ -492,4 +491,4 @@ namespace std {
492
491
# pragma warning(pop)
493
492
#endif
494
493
495
- #endif /* BOOST_ARRAY_HPP */
494
+ #endif // #ifndef BOOST_ARRAY_HPP_INCLUDED
You can’t perform that action at this time.
0 commit comments