|
Boost-Commit : |
From: Frank.Birbacher_at_[hidden]
Date: 2007-11-02 14:09:31
Author: birbacher
Date: 2007-11-02 14:09:30 EDT (Fri, 02 Nov 2007)
New Revision: 40690
URL: http://svn.boost.org/trac/boost/changeset/40690
Log:
formatted code: added some empty lines to increase readability
Text files modified:
sandbox-branches/birbacher/fix_iostreams/boost/iostreams/detail/closer.hpp | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
Modified: sandbox-branches/birbacher/fix_iostreams/boost/iostreams/detail/closer.hpp
==============================================================================
--- sandbox-branches/birbacher/fix_iostreams/boost/iostreams/detail/closer.hpp (original)
+++ sandbox-branches/birbacher/fix_iostreams/boost/iostreams/detail/closer.hpp 2007-11-02 14:09:30 EDT (Fri, 02 Nov 2007)
@@ -32,10 +32,12 @@
: device_(&dev), which_(which),
dummy_(true), nothrow_(dummy_)
{ }
+
external_device_closer(Device& dev, BOOST_IOS::openmode which, bool& nothrow)
: device_(&dev), which_(which),
dummy_(true), nothrow_(nothrow)
{ }
+
~external_device_closer()
{
try {
@@ -47,6 +49,7 @@
}
}
}
+
Device* device_;
BOOST_IOS::openmode which_;
bool dummy_;
@@ -59,11 +62,13 @@
: filter_(flt), device_(dev), which_(which),
dummy_(true), nothrow_(dummy_)
{ }
+
external_filter_closer( Filter& flt, Device& dev,
BOOST_IOS::openmode which, bool& nothrow )
: filter_(flt), device_(dev), which_(which),
dummy_(true), nothrow_(nothrow)
{ }
+
~external_filter_closer()
{
try {
@@ -75,6 +80,7 @@
}
}
}
+
Filter& filter_;
Device& device_;
BOOST_IOS::openmode which_;
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