|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r74830 - trunk/boost/phoenix/operator
From: thom.heller_at_[hidden]
Date: 2011-10-08 20:40:21
Author: theller
Date: 2011-10-08 20:40:20 EDT (Sat, 08 Oct 2011)
New Revision: 74830
URL: http://svn.boost.org/trac/boost/changeset/74830
Log:
Fixing bug #5920
Added:
trunk/boost/phoenix/operator/comparison.hpp
- copied, changed from r74827, /trunk/boost/phoenix/operator/comparision.hpp
Removed:
trunk/boost/phoenix/operator/comparision.hpp
Text files modified:
trunk/boost/phoenix/operator/comparison.hpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Deleted: trunk/boost/phoenix/operator/comparision.hpp
==============================================================================
--- trunk/boost/phoenix/operator/comparision.hpp 2011-10-08 20:40:20 EDT (Sat, 08 Oct 2011)
+++ (empty file)
@@ -1,36 +0,0 @@
-/*==============================================================================
- Copyright (c) 2005-2010 Joel de Guzman
- Copyright (c) 2010 Thomas Heller
-
- 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)
-==============================================================================*/
-#ifndef BOOST_PHOENIX_OPERATOR_COMPARISION_HPP
-#define BOOST_PHOENIX_OPERATOR_COMPARISION_HPP
-
-#include <boost/phoenix/operator/detail/define_operator.hpp>
-#include <boost/phoenix/core/expression.hpp>
-#include <boost/proto/operators.hpp>
-
-namespace boost { namespace phoenix
-{
-
- BOOST_PHOENIX_BINARY_OPERATORS(
- (equal_to)
- (not_equal_to)
- (less_equal)
- (greater_equal)
- (less)
- (greater)
- )
- using proto::exprns_::operator==;
- using proto::exprns_::operator!=;
- using proto::exprns_::operator<=;
- using proto::exprns_::operator>=;
- using proto::exprns_::operator<;
- using proto::exprns_::operator>;
-}}
-
-#include <boost/phoenix/operator/detail/undef_operator.hpp>
-
-#endif
Copied: trunk/boost/phoenix/operator/comparison.hpp (from r74827, /trunk/boost/phoenix/operator/comparision.hpp)
==============================================================================
--- /trunk/boost/phoenix/operator/comparision.hpp (original)
+++ trunk/boost/phoenix/operator/comparison.hpp 2011-10-08 20:40:20 EDT (Sat, 08 Oct 2011)
@@ -5,8 +5,8 @@
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)
==============================================================================*/
-#ifndef BOOST_PHOENIX_OPERATOR_COMPARISION_HPP
-#define BOOST_PHOENIX_OPERATOR_COMPARISION_HPP
+#ifndef BOOST_PHOENIX_OPERATOR_COMPARISON_HPP
+#define BOOST_PHOENIX_OPERATOR_COMPARISON_HPP
#include <boost/phoenix/operator/detail/define_operator.hpp>
#include <boost/phoenix/core/expression.hpp>
@@ -14,7 +14,6 @@
namespace boost { namespace phoenix
{
-
BOOST_PHOENIX_BINARY_OPERATORS(
(equal_to)
(not_equal_to)
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk