From 192cc37d6fa002446012855c24eca0a37e1afd7e Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 1 Nov 2010 23:29:18 +0000 Subject: Removed extraneous debugging. --- src/float.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/float.cpp') diff --git a/src/float.cpp b/src/float.cpp index e85dff8..879d74b 100644 --- a/src/float.cpp +++ b/src/float.cpp @@ -31,16 +31,12 @@ void Gats::Float::write( Bu::Stream &rOut ) const rOut.write( sWriteCache.getStr(), sWriteCache.getSize() ); } -#include -using namespace Bu; - void Gats::Float::read( Bu::Stream &rIn, char cType ) { int iSize; Gats::Integer::readPackedInt( rIn, iSize ); char buf[50]; buf[rIn.read( buf, iSize )] = '\0'; - sio << "Reading float, iSize = " << iSize << ", str = " << buf << sio.nl; sscanf( buf, "%la", &fVal ); } -- cgit v1.2.3