$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2008-02-06 17:46:32
Author: nesotto
Date: 2008-02-06 17:46:31 EST (Wed, 06 Feb 2008)
New Revision: 43133
URL: http://svn.boost.org/trac/boost/changeset/43133
Log:
cleanup to pass inspection report
Removed:
   trunk/libs/ptr_container/test/sequence_point.cpp
Text files modified: 
   trunk/libs/ptr_container/test/Jamfile.v2 |    11 ++++++++++-                             
   1 files changed, 10 insertions(+), 1 deletions(-)
Modified: trunk/libs/ptr_container/test/Jamfile.v2
==============================================================================
--- trunk/libs/ptr_container/test/Jamfile.v2	(original)
+++ trunk/libs/ptr_container/test/Jamfile.v2	2008-02-06 17:46:31 EST (Wed, 06 Feb 2008)
@@ -1,3 +1,13 @@
+#//
+#// Boost.Pointer Container
+#//
+#//  Copyright Thorsten Ottosen 2003-2008. Use, modification and
+#//  distribution is 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)
+#//
+#// For more information, see http://www.boost.org/libs/ptr_container/
+#//
 
 rule sc-test ( name : extra-sources * )
 {
@@ -23,6 +33,5 @@
     [ sc-test indirect_fun ]  
     [ sc-test serialization : /boost/serialization//boost_serialization ]  
     [ sc-test no_exceptions ]    
-#    [ sc-test BoostPolymorphicContainerTest ]    
  
     ;
Deleted: trunk/libs/ptr_container/test/sequence_point.cpp
==============================================================================
--- trunk/libs/ptr_container/test/sequence_point.cpp	2008-02-06 17:46:31 EST (Wed, 06 Feb 2008)
+++ (empty file)
@@ -1,52 +0,0 @@
-#include <iostream>
-
-
-struct Fun
-{
-    Fun()
-    {
-        std::cout << "fun" << std::endl;
-    }
-    
-    template< class T >
-    void operator()( T t )
-    {
-    }
-
-    template< class T >
-    Fun& operator,( T r ) 
-    {
-        return *this;
-    }
-};
-
-template< class T >
-Fun foo( T t )
-{
-    return Fun();
-}
-
-
-
-struct one
-{
-    one()
-    {
-        std::cout <<"one" << std::endl;
-    }
-};
-
-struct two
-{
-    two()
-    {
-        std::cout <<"two" << std::endl;
-    }
-};
-
-int main()
-{
-    foo( one() )( two() );
-
-    Fun(),one(),two(),one();
-}