From db45c881d98f2288aa26960e5eae6070f792b82a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 31 Mar 2010 14:23:55 +0000 Subject: Removed the bool cast operator from FBasicString. It turns out it was causing way, way, way more problems than it solved. A number of libbu++ tests were inacurate because of it, there were problems in several other programs, and there may be more that have problems we haven't found yet because of this. This will most likely cause complitaion errors, especially in places we didn't expect, where strings were being stored into or passed as integers and the like. In cases where you were just testing a string, just call the "isSet()" function, which is functionally equivellent to the old bool cast operator. --- src/formatter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/formatter.h') diff --git a/src/formatter.h b/src/formatter.h index ec84be5..47592ad 100644 --- a/src/formatter.h +++ b/src/formatter.h @@ -204,7 +204,7 @@ namespace Bu template void iparse( type &i, const Bu::FString &sBuf ) { - if( !sBuf ) + if( !sBuf.isSet() ) return; if( sBuf[0] != '+' && sBuf[0] != '-' && (sBuf[0] < '0' && sBuf[0] > '9') ) @@ -230,7 +230,7 @@ namespace Bu template void uparse( type &i, const Bu::FString &sBuf ) { - if( !sBuf ) + if( !sBuf.isSet() ) return; if( sBuf[0] != '+' && (sBuf[0] < '0' && sBuf[0] > '9') ) -- cgit v1.2.3