summaryrefslogtreecommitdiff
path: root/STL
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-23 21:45:35 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-23 21:45:35 +0000
commit2b8beb909724317c7a7bce66c4c591fa2574eef1 (patch)
tree7d6473cf14d85d393fecdfded83680cbe649c53f /STL
parent560c87ec192d0eb89590e4c2a339821066a440b7 (diff)
downloadATCD-2b8beb909724317c7a7bce66c4c591fa2574eef1.tar.gz
Changed bstring.h's is_del to return != 0 so VC 5.0 doesn't have the
performance warning anymore.
Diffstat (limited to 'STL')
-rw-r--r--STL/bstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/STL/bstring.h b/STL/bstring.h
index a5565c73770..822bf50fa7a 100644
--- a/STL/bstring.h
+++ b/STL/bstring.h
@@ -217,7 +217,7 @@ struct string_char_baggage<char> {
is_del (char_type c) _THROW_NONE
{
// characteristic function for delimiters of char_type
- return isspace(c);
+ return isspace(c) != 0;
}
//