Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63762 - in trunk: boost/iostreams/device libs/functional/hash/test libs/iostreams/doc/concepts libs/iostreams/test
From: daniel_james_at_[hidden]
Date: 2010-07-08 16:48:31


Author: danieljames
Date: 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
New Revision: 63762
URL: http://svn.boost.org/trac/boost/changeset/63762

Log:
Fix inspect issues.
Removed:
   trunk/libs/iostreams/doc/concepts/multi-character.html
Text files modified:
   trunk/boost/iostreams/device/file_descriptor.hpp | 4 ++--
   trunk/libs/functional/hash/test/implicit_fail_test.cpp | 7 ++++++-
   trunk/libs/functional/hash/test/shared_ptr_fail_test.cpp | 7 ++++++-
   trunk/libs/iostreams/test/deprecated_file_descriptor_test.cpp | 4 ++++
   4 files changed, 18 insertions(+), 4 deletions(-)

Modified: trunk/boost/iostreams/device/file_descriptor.hpp
==============================================================================
--- trunk/boost/iostreams/device/file_descriptor.hpp (original)
+++ trunk/boost/iostreams/device/file_descriptor.hpp 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
@@ -39,8 +39,8 @@
 
 enum file_descriptor_flags
 {
- never_close_handle = 0,
- close_handle = 3
+ never_close_handle = 0,
+ close_handle = 3
 };
 
 class BOOST_IOSTREAMS_DECL file_descriptor {

Modified: trunk/libs/functional/hash/test/implicit_fail_test.cpp
==============================================================================
--- trunk/libs/functional/hash/test/implicit_fail_test.cpp (original)
+++ trunk/libs/functional/hash/test/implicit_fail_test.cpp 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
@@ -1,3 +1,8 @@
+
+// Copyright 2010 Daniel James.
+// 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)
+
 #include <boost/functional/hash.hpp>
 
 namespace test
@@ -13,4 +18,4 @@
     test::converts x;
     
     hash(x);
-}
\ No newline at end of file
+}

Modified: trunk/libs/functional/hash/test/shared_ptr_fail_test.cpp
==============================================================================
--- trunk/libs/functional/hash/test/shared_ptr_fail_test.cpp (original)
+++ trunk/libs/functional/hash/test/shared_ptr_fail_test.cpp 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
@@ -1,3 +1,8 @@
+
+// Copyright 2010 Daniel James.
+// 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)
+
 #include <boost/functional/hash.hpp>
 #include <boost/shared_ptr.hpp>
 
@@ -8,4 +13,4 @@
     boost::shared_ptr<int> x(new int(10));
     
     hash(x);
-}
\ No newline at end of file
+}

Deleted: trunk/libs/iostreams/doc/concepts/multi-character.html
==============================================================================
--- trunk/libs/iostreams/doc/concepts/multi-character.html 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
+++ (empty file)
@@ -1,60 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<HTML>
-<HEAD>
- <TITLE>Mutli-Character Filter</TITLE>
- <LINK REL="stylesheet" HREF="../../../../boost.css">
- <LINK REL="stylesheet" HREF="../theme/iostreams.css">
-</HEAD>
-<BODY>
-
-<!-- Begin Banner -->
-
- <H1 CLASS="title">Mutli-Character Filter</H1>
- <HR CLASS="banner">
-
-<!-- End Banner -->
-
-<H2>Description</H2>
-
-<P>Filter which provides access to its controlled sequence or sequences <I>via</I> a socket-like interface rather than one character at a time. The difference between a Filter which is Mutli-Character and one which is not is reflected in the specifications of the various Filter refinements. <I>See</I>, <I>e.g.</I>, InputFilter and OutputFilter.</P>
-
-<H2>Refinement of</H2>
-
-<P>Filter.</P>
-
-<A NAME="types"></A>
-<H2>Associated Types</H2>
-
-<P>Same as Filter, with the following additional requirements:</P>
-
-<TABLE CELLPADDING="5" BORDER="1">
- <TR><TD>Category</TD><TD>A type convertible to filter_tag and to multichar_tag</TD></TR>
-</TABLE>
-
-<A NAME="expressions"></A>
-<H2>Valid Expressions / Semantics</H2>
-
-<P>Same as Filter.</P>
-
-<H2>Models</H2>
-
-<UL>
- <LI>The compression and decompression filters</A>
- <LI>basic_regex_filter
- <LI>aggregate_filter
- <LI>symmetric_filter
-</UL>
-
-<!-- Begin Footer -->
-
-<HR>
-<P CLASS="copyright">Revised 02 Feb 2008</P>
-
-<P CLASS="copyright">&copy; Copyright Jonathan Turkanis, 2004</P>
-<P CLASS="copyright">
- 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)
-</P>
-
-<!-- End Footer -->
-
-</BODY>
\ No newline at end of file

Modified: trunk/libs/iostreams/test/deprecated_file_descriptor_test.cpp
==============================================================================
--- trunk/libs/iostreams/test/deprecated_file_descriptor_test.cpp (original)
+++ trunk/libs/iostreams/test/deprecated_file_descriptor_test.cpp 2010-07-08 16:48:30 EDT (Thu, 08 Jul 2010)
@@ -1,3 +1,7 @@
+// (C) Copyright 2010 Daniel James
+// 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.)
+
 #include <boost/iostreams/device/file_descriptor.hpp>
 #include <boost/iostreams/stream.hpp>
 #include <boost/test/unit_test.hpp>


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