|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r51695 - sandbox/numeric_bindings/boost/numeric/bindings/traits
From: rutger_at_[hidden]
Date: 2009-03-11 05:19:23
Author: rutger
Date: 2009-03-11 05:19:22 EDT (Wed, 11 Mar 2009)
New Revision: 51695
URL: http://svn.boost.org/trac/boost/changeset/51695
Log:
Naming on is_bindable updated
Added:
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_matrix.hpp
- copied, changed from r51693, /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_vector.hpp
- copied, changed from r51693, /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp
Removed:
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp
Text files modified:
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_matrix.hpp | 6 +++---
sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_vector.hpp | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
Copied: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_matrix.hpp (from r51693, /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp)
==============================================================================
--- /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp (original)
+++ sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_matrix.hpp 2009-03-11 05:19:22 EDT (Wed, 11 Mar 2009)
@@ -6,8 +6,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
-#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
-#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
+#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_BINDABLE_MATRIX_HPP
+#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_BINDABLE_MATRIX_HPP
#include <boost/mpl/bool.hpp>
@@ -17,7 +17,7 @@
namespace traits {
template< typename T >
-struct is_matrix: boost::mpl::bool_<false> {};
+struct is_bindable_matrix: boost::mpl::bool_<false> {};
}}}}
Copied: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_vector.hpp (from r51693, /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp)
==============================================================================
--- /sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp (original)
+++ sandbox/numeric_bindings/boost/numeric/bindings/traits/is_bindable_vector.hpp 2009-03-11 05:19:22 EDT (Wed, 11 Mar 2009)
@@ -6,8 +6,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
-#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
-#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
+#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_BINDABLE_VECTOR_HPP
+#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_BINDABLE_VECTOR_HPP
#include <boost/mpl/bool.hpp>
@@ -17,7 +17,7 @@
namespace traits {
template< typename T >
-struct is_vector: boost::mpl::bool_<false> {};
+struct is_bindable_vector: boost::mpl::bool_<false> {};
}}}}
Deleted: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp
==============================================================================
--- sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp 2009-03-11 05:19:22 EDT (Wed, 11 Mar 2009)
+++ (empty file)
@@ -1,24 +0,0 @@
-//
-// Copyright (c) 2009 by Rutger ter Borg
-//
-// 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_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
-#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
-
-#include <boost/mpl/bool.hpp>
-
-namespace boost {
-namespace numeric {
-namespace bindings {
-namespace traits {
-
-template< typename T >
-struct is_matrix: boost::mpl::bool_<false> {};
-
-}}}}
-
-#endif
Deleted: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp
==============================================================================
--- sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp 2009-03-11 05:19:22 EDT (Wed, 11 Mar 2009)
+++ (empty file)
@@ -1,24 +0,0 @@
-//
-// Copyright (c) 2009 by Rutger ter Borg
-//
-// 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_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
-#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
-
-#include <boost/mpl/bool.hpp>
-
-namespace boost {
-namespace numeric {
-namespace bindings {
-namespace traits {
-
-template< typename T >
-struct is_vector: boost::mpl::bool_<false> {};
-
-}}}}
-
-#endif
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