summaryrefslogtreecommitdiff
path: root/ACEXML
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-24 21:43:44 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-24 21:43:44 +0000
commit5532d7db6178462480f3b2559a482bf9838e9d68 (patch)
treebbe10d5bfa6952b7b4df1ad3f868289a2ffbd5f2 /ACEXML
parent38982634ced1521f5c13a790542fe094ed780be7 (diff)
downloadATCD-5532d7db6178462480f3b2559a482bf9838e9d68.tar.gz
ChangeLogTag: Sat Aug 24 16:41:36 2002 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'ACEXML')
-rw-r--r--ACEXML/common/FileCharStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACEXML/common/FileCharStream.cpp b/ACEXML/common/FileCharStream.cpp
index 1c1fe66e38d..943b8cddd1e 100644
--- a/ACEXML/common/FileCharStream.cpp
+++ b/ACEXML/common/FileCharStream.cpp
@@ -59,7 +59,7 @@ int
ACEXML_FileCharStream::get (ACEXML_Char& ch)
{
ch = (ACEXML_Char) ACE_OS::fgetc (this->infile_);
- return (::feof(this->infile_) ? -1 : 0);
+ return (feof(this->infile_) ? -1 : 0);
}
int