diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/stream.h b/src/stream.h index 0f5aecb0..fac62f3d 100644 --- a/src/stream.h +++ b/src/stream.h @@ -82,6 +82,13 @@ public: } /** + * Destroys an output_stream_t. This deletes the dynamically + * allocated ostream, if necessary. It also closes output file + * descriptor, if necessary. + */ + ~output_stream_t(); + + /** * Initialize the output stream object. * * @param output_file File to which to send output. If both this @@ -94,13 +101,6 @@ public: const optional<path>& pager_path = none); /** - * Destroys an output_stream_t. This deletes the dynamically - * allocated ostream, if necessary. It also closes output file - * descriptor, if necessary. - */ - ~output_stream_t(); - - /** * Convertor to a standard ostream. This is used so that we can * stream directly to an object of type output_stream_t. */ |