mirror of
https://github.com/boostorg/array.git
synced 2026-04-29 02:03:39 +02:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c4de218f9 | |||
| e875287d55 | |||
| 100b5d687b | |||
| 7fb9412ea8 | |||
| 471bc9bf06 | |||
| 9cf5e0c9a1 | |||
| d2910e195a | |||
| b3ace9fb6e | |||
| a6b531b5b1 | |||
| 9804292dad | |||
| 069b5e2ca1 | |||
| 526953fc5e | |||
| b06f12b0b7 | |||
| f0bbb8b211 | |||
| d7a5408143 | |||
| 564e4029d0 | |||
| 0dc11c2f23 | |||
| 7da1c4b310 | |||
| 8f10fdf27e |
@@ -24,6 +24,13 @@
|
||||
#ifndef BOOST_ARRAY_HPP
|
||||
#define BOOST_ARRAY_HPP
|
||||
|
||||
#include <boost/detail/workaround.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable:4996) // 'std::equal': Function call with parameters that may be unsafe
|
||||
#endif
|
||||
|
||||
#include <cstddef>
|
||||
#include <stdexcept>
|
||||
#include <boost/assert.hpp>
|
||||
@@ -320,4 +327,9 @@ namespace boost {
|
||||
|
||||
} /* namespace boost */
|
||||
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
|
||||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#endif /*BOOST_ARRAY_HPP*/
|
||||
|
||||
Reference in New Issue
Block a user