aboutsummaryrefslogtreecommitdiff
path: root/src/unit/sfile.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-04-10 17:37:46 +0000
committerMike Buland <eichlan@xagasoft.com>2007-04-10 17:37:46 +0000
commite7ab7cb1604c04763bbdcece5885e6ce5aa100b4 (patch)
treedb5bee7da9373f64508e243f24031bc35b1acee7 /src/unit/sfile.cpp
parent903e7a1e3d4fe99e9de7f4adc1e401ba871caec9 (diff)
downloadlibbu++-e7ab7cb1604c04763bbdcece5885e6ce5aa100b4.tar.gz
libbu++-e7ab7cb1604c04763bbdcece5885e6ce5aa100b4.tar.bz2
libbu++-e7ab7cb1604c04763bbdcece5885e6ce5aa100b4.tar.xz
libbu++-e7ab7cb1604c04763bbdcece5885e6ce5aa100b4.zip
Fixed a warning in the SFile test, and added std::list support to the archive.
I guess I should write a test for it too... I'm also thinking of removing the S from the front of the stream children.
Diffstat (limited to '')
-rw-r--r--src/unit/sfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unit/sfile.cpp b/src/unit/sfile.cpp
index 3f52272..2aff312 100644
--- a/src/unit/sfile.cpp
+++ b/src/unit/sfile.cpp
@@ -87,7 +87,7 @@ public:
87 unitTest( sf.isEOS() == false ); 87 unitTest( sf.isEOS() == false );
88 try 88 try
89 { 89 {
90 int r = sf.read( buf, 5 ); 90 sf.read( buf, 5 );
91 unitFailed("No exception thrown"); 91 unitFailed("No exception thrown");
92 } 92 }
93 catch( Bu::FileException &e ) 93 catch( Bu::FileException &e )