summaryrefslogtreecommitdiff
path: root/ACEXML
diff options
context:
space:
mode:
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