summaryrefslogtreecommitdiff
path: root/STL
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-25 17:12:50 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-25 17:12:50 +0000
commit5f4b9526610554517d275c1c50ac2c21b9fe901b (patch)
tree89b6da57563f316d9c9553acef35cc4ca35bb4b0 /STL
parentad9fec6e764b8f325fc22e71b9d5bbfd21c80b9e (diff)
downloadATCD-5f4b9526610554517d275c1c50ac2c21b9fe901b.tar.gz
Changed a return xxx; to return xxx != 0; to remove a warning in VC++ 5.0
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 68442eb5e83..8a7b46a11d9 100644
--- a/STL/bstring.h
+++ b/STL/bstring.h
@@ -134,7 +134,7 @@ struct string_char_baggage {
is_del (char_type c) _THROW_NONE
{
// characteristic function for delimiters of char_type
- return isspace(c);
+ return isspace(c) != 0;
}
//