mirror of
https://github.com/boostorg/convert.git
synced 2026-02-02 08:42:16 +00:00
19 lines
526 B
C++
19 lines
526 B
C++
// Boost.Convert library
|
|
//
|
|
// 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_WORKAROUNDS_PRIVATE_HPP__
|
|
#define __BOOST_CONVERT_WORKAROUNDS_PRIVATE_HPP__
|
|
|
|
#include <boost/version.hpp>
|
|
|
|
#if defined(_MSC_VER)
|
|
# pragma warning(disable: 4348)
|
|
# pragma warning(disable: 4800)
|
|
# pragma warning(disable: 4996)
|
|
#endif
|
|
|
|
#endif // __BOOST_CONVERT_WORKAROUNDS_PRIVATE_HPP__
|