Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76537 - branches/release/libs/graph/test
From: jewillco_at_[hidden]
Date: 2012-01-15 18:59:39


Author: jewillco
Date: 2012-01-15 18:59:39 EST (Sun, 15 Jan 2012)
New Revision: 76537
URL: http://svn.boost.org/trac/boost/changeset/76537

Log:
Removed redundant function_requires in test case
Text files modified:
   branches/release/libs/graph/test/reverse_graph_cc.cpp | 2 --
   1 files changed, 0 insertions(+), 2 deletions(-)

Modified: branches/release/libs/graph/test/reverse_graph_cc.cpp
==============================================================================
--- branches/release/libs/graph/test/reverse_graph_cc.cpp (original)
+++ branches/release/libs/graph/test/reverse_graph_cc.cpp 2012-01-15 18:59:39 EST (Sun, 15 Jan 2012)
@@ -30,7 +30,6 @@
     BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Vertex, vertex_color_t> ));
     BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_weight_t> ));
     BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> ));
- function_requires< ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> >();
     AdjList g;
     Graph gr(g);
     get_property(gr, graph_name_t());
@@ -49,7 +48,6 @@
     BOOST_CONCEPT_ASSERT(( PropertyGraphConcept<Graph, Vertex, vertex_color_t> ));
     BOOST_CONCEPT_ASSERT(( PropertyGraphConcept<Graph, Edge, edge_weight_t> ));
     BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> ));
- function_requires< ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> >();
     AdjList g;
     Graph gr(g);
     get_property(gr, graph_name_t());


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