From 27dfdd51f1dd836bfaa9e8d803a4f19fd93ea36c Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Sun, 6 Feb 2005 06:21:00 +0000 Subject: [PATCH] moved to config directory [SVN r27177] --- .../iostreams/detail/disable_warnings.hpp | 20 ------------------- .../iostreams/detail/enable_warnings.hpp | 14 ------------- 2 files changed, 34 deletions(-) delete mode 100755 include/boost/iostreams/detail/disable_warnings.hpp delete mode 100755 include/boost/iostreams/detail/enable_warnings.hpp diff --git a/include/boost/iostreams/detail/disable_warnings.hpp b/include/boost/iostreams/detail/disable_warnings.hpp deleted file mode 100755 index 29c7377..0000000 --- a/include/boost/iostreams/detail/disable_warnings.hpp +++ /dev/null @@ -1,20 +0,0 @@ -// (C) Copyright Jonathan Turkanis 2003. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) - -// See http://www.boost.org/libs/iostreams for documentation. - -#include // BOOST_MSVC. -#include // BOOST_WORKAROUND. - -#if defined(BOOST_MSVC) -# pragma warning(push) -# pragma warning(disable:4224) // Parameter previously defined as type. -# pragma warning(disable:4244) // Conversion: possible loss of data. -#else -# if BOOST_WORKAROUND(__BORLANDC__, < 0x600) -# pragma warn -8008 // Condition always true/false. -# pragma warn -8080 // identifier declared but never used. -# endif -#endif - diff --git a/include/boost/iostreams/detail/enable_warnings.hpp b/include/boost/iostreams/detail/enable_warnings.hpp deleted file mode 100755 index 01deda8..0000000 --- a/include/boost/iostreams/detail/enable_warnings.hpp +++ /dev/null @@ -1,14 +0,0 @@ -// (C) Copyright Jonathan Turkanis 2003. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) - -// See http://www.boost.org/libs/iostreams for documentation. - -#if defined(BOOST_MSVC) -# pragma warning(pop) -#else -# if BOOST_WORKAROUND(__BORLANDC__, < 0x600) -# pragma warn .8008 // Condition always true/false. -# pragma warn .8080 // identifier declared but never used. -# endif -#endif