$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53911 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2009-06-14 20:19:11
Author: jewillco
Date: 2009-06-14 20:19:08 EDT (Sun, 14 Jun 2009)
New Revision: 53911
URL: http://svn.boost.org/trac/boost/changeset/53911
Log:
Reverted r53870 (unnecessary patch); refs #3134
Text files modified: 
   trunk/boost/graph/rmat_graph_generator.hpp |     3 ---                                     
   1 files changed, 0 insertions(+), 3 deletions(-)
Modified: trunk/boost/graph/rmat_graph_generator.hpp
==============================================================================
--- trunk/boost/graph/rmat_graph_generator.hpp	(original)
+++ trunk/boost/graph/rmat_graph_generator.hpp	2009-06-14 20:19:08 EDT (Sun, 14 Jun 2009)
@@ -228,13 +228,10 @@
   struct sort_pair {
     bool operator() (const std::pair<T,T>& x, const std::pair<T,T>& y)
     { 
-      return y < x;
-#if 0 // Testing VC++ 9.0 behavior
       if (x.first == y.first)
         return x.second > y.second;
       else 
         return x.first > y.first;
-#endif
     }
   };