From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/bitstring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bitstring.cpp') diff --git a/src/bitstring.cpp b/src/bitstring.cpp index 207a036..39c2e63 100644 --- a/src/bitstring.cpp +++ b/src/bitstring.cpp @@ -444,9 +444,9 @@ long Bu::BitString::getHighestOrderBitPos() return -1; } -Bu::FString Bu::BitString::toString() +Bu::String Bu::BitString::toString() { - Bu::FString sRet; + Bu::String sRet; for( int j = iBits-1; j >= 0; j-- ) sRet.append( getBit( j )?'1':'0' ); return sRet; -- cgit v1.2.3