From 71d18481dd35d4a9c126f81cfe25938db881a6cb Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Fri, 2 Jul 2004 01:21:32 +0000 Subject: [PATCH] move BOOST_USING_STD_MIN and _MAX and BOOST_PREVENT_MACRO_SUBSTITUTION to the config headers, remove boost/minmax.hpp, update coding guidelines [SVN r23313] --- include/boost/minmax.hpp | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 include/boost/minmax.hpp diff --git a/include/boost/minmax.hpp b/include/boost/minmax.hpp deleted file mode 100644 index 91d730a..0000000 --- a/include/boost/minmax.hpp +++ /dev/null @@ -1,24 +0,0 @@ -// (C) Copyright Eric Niebler 2004. -// Use, modification and distribution are subject to 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) - -/* - Revision history: - 25 February 2004 - Initial version. (Eric) -*/ - -#ifndef BOOST_MINMAX_HPP -#define BOOST_MINMAX_HPP - -#include // for std::min and std::max -#include - -#define BOOST_USING_STD_MIN()\ - using std::min - -#define BOOST_USING_STD_MAX()\ - using std::max - -#endif // BOOST_MINMAX_HPP