mirror of
https://github.com/boostorg/convert.git
synced 2026-02-15 00:52:21 +00:00
18 lines
696 B
C++
18 lines
696 B
C++
// Copyright (c) 2009-2014 Vladimir Batov.
|
|
// Use, modification and distribution are subject to the Boost Software License,
|
|
// Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
|
|
|
|
#ifndef BOOST_CONVERT_TEST_FORWARD_HPP
|
|
#define BOOST_CONVERT_TEST_FORWARD_HPP
|
|
|
|
#if defined(_MSC_VER)
|
|
# pragma warning(disable: 4189) // local variable is initialized but not referenced.
|
|
# pragma warning(disable: 4127) // conditional expression is constant.
|
|
# pragma warning(disable: 4100) // unreferenced formal parameter.
|
|
# pragma warning(disable: 4714) // marked as __forceinline not #endif
|
|
# pragma warning(disable: 4706)
|
|
# pragma warning(disable: 4005)
|
|
#endif
|
|
|
|
#endif // BOOST_CONVERT_FORWARD_HPP
|