diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/icl/test/unit_test_unwarned.hpp | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/icl/test/unit_test_unwarned.hpp')
-rw-r--r-- | src/boost/libs/icl/test/unit_test_unwarned.hpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/boost/libs/icl/test/unit_test_unwarned.hpp b/src/boost/libs/icl/test/unit_test_unwarned.hpp new file mode 100644 index 00000000..335d800f --- /dev/null +++ b/src/boost/libs/icl/test/unit_test_unwarned.hpp @@ -0,0 +1,28 @@ +/*-----------------------------------------------------------------------------+ +Copyright (c) 2008-2009: Joachim Faulhaber ++------------------------------------------------------------------------------+ + Distributed under the Boost Software License, Version 1.0. + (See accompanying file LICENCE.txt or copy at + http://www.boost.org/LICENSE_1_0.txt) ++-----------------------------------------------------------------------------*/ +#ifndef BOOST_ICL_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 +#define BOOST_ICL_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 + +#include <boost/icl/detail/boost_config.hpp> +#include <boost/detail/workaround.hpp> + +#ifdef BOOST_MSVC +#pragma warning(push) +#pragma warning(disable:4389) // boost/test/test_tools.hpp(509) : warning C4389: '==' : signed/unsigned mismatch +#pragma warning(disable:4996) // 'std::_Traits_helper::copy_s': Function call with parameters that may be unsafe +#endif + +#include <boost/test/unit_test.hpp> + +#ifdef BOOST_MSVC +#pragma warning(pop) +#endif + + +#endif // BOOST_ICL_TEST_UNIT_TEST_UNWARNED_HPP_JOFA_091204 + |