summaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-31 05:58:23 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-31 05:58:23 -0400
commitf749a1bb1eb40faa9cac685a02d012a5efb11aaa (patch)
tree0c652e16e90cfc56aece0ebdb168d002dd1778f2 /src/stream.h
parent0934612436ae2dcdb77828f89ef7d9acb3450470 (diff)
downloadfork-ledger-f749a1bb1eb40faa9cac685a02d012a5efb11aaa.tar.gz
fork-ledger-f749a1bb1eb40faa9cac685a02d012a5efb11aaa.tar.bz2
fork-ledger-f749a1bb1eb40faa9cac685a02d012a5efb11aaa.zip
Made output_stream_t noncopyable.
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream.h b/src/stream.h
index fac62f3d..c35eef23 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -62,7 +62,7 @@ namespace ledger {
* Cline's "C++ FAQ Lite". Arguably this should be three different
* classes, but that introduces additional unneeded complications.
*/
-class output_stream_t
+class output_stream_t : public noncopyable
{
private:
int pipe_to_pager_fd;