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.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/formatter.cpp') diff --git a/src/formatter.cpp b/src/formatter.cpp index 7ebe256..3e0f41e 100644 --- a/src/formatter.cpp +++ b/src/formatter.cpp @@ -459,7 +459,7 @@ Bu::Formatter &Bu::operator>>( Bu::Formatter &f, long double &flt ) Bu::Formatter &Bu::operator>>( Bu::Formatter &f, bool &b ) { Bu::FString sStr = f.readToken(); - if( !sStr ) + if( !sStr.isSet() ) return f; char c = *sStr.begin(); if( c == 'y' || c == 'Y' || c == 't' || c == 'T' ) -- cgit v1.2.3