$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2008-02-07 03:44:10
Author: nesotto
Date: 2008-02-07 03:44:10 EST (Thu, 07 Feb 2008)
New Revision: 43140
URL: http://svn.boost.org/trac/boost/changeset/43140
Log:
cleanup to pass inspection tool
Removed:
   branches/release/libs/ptr_container/test/sequence_point.cpp
Text files modified: 
   branches/release/libs/ptr_container/doc/default.css       |     2 ++                                      
   branches/release/libs/ptr_container/doc/intro.xml         |    12 ++++++++++++                            
   branches/release/libs/ptr_container/doc/ptr_container.xml |    12 ++++++++++++                            
   branches/release/libs/ptr_container/test/Jamfile.v2       |    11 +++++++++++                             
   4 files changed, 37 insertions(+), 0 deletions(-)
Modified: branches/release/libs/ptr_container/doc/default.css
==============================================================================
--- branches/release/libs/ptr_container/doc/default.css	(original)
+++ branches/release/libs/ptr_container/doc/default.css	2008-02-07 03:44:10 EST (Thu, 07 Feb 2008)
@@ -1,4 +1,6 @@
 /*
+boostinspect:nolicense
+
 :Author: David Goodger
 :Contact: goodger_at_[hidden]
 :date: $Date$
Modified: branches/release/libs/ptr_container/doc/intro.xml
==============================================================================
--- branches/release/libs/ptr_container/doc/intro.xml	(original)
+++ branches/release/libs/ptr_container/doc/intro.xml	2008-02-07 03:44:10 EST (Thu, 07 Feb 2008)
@@ -1,3 +1,15 @@
+<!--
+//
+// Boost.Pointer Container
+//
+//  Copyright Thorsten Ottosen 2003-2005. 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/
+//
+-->
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN"
 "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
Modified: branches/release/libs/ptr_container/doc/ptr_container.xml
==============================================================================
--- branches/release/libs/ptr_container/doc/ptr_container.xml	(original)
+++ branches/release/libs/ptr_container/doc/ptr_container.xml	2008-02-07 03:44:10 EST (Thu, 07 Feb 2008)
@@ -1,3 +1,15 @@
+<!-- 
+//
+// Boost.Pointer Container
+//
+//  Copyright Thorsten Ottosen 2003-2005. 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/
+//
+-->
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN"
 "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
Modified: branches/release/libs/ptr_container/test/Jamfile.v2
==============================================================================
--- branches/release/libs/ptr_container/test/Jamfile.v2	(original)
+++ branches/release/libs/ptr_container/test/Jamfile.v2	2008-02-07 03:44:10 EST (Thu, 07 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 * )
 {
@@ -22,4 +32,5 @@
     [ sc-test indirect_fun ]  
     [ sc-test serialization : /boost/serialization//boost_serialization ]  
     [ sc-test no_exceptions ]    
+
     ;
Deleted: branches/release/libs/ptr_container/test/sequence_point.cpp
==============================================================================
--- branches/release/libs/ptr_container/test/sequence_point.cpp	2008-02-07 03:44:10 EST (Thu, 07 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();
-}