You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by bu...@apache.org on 2003/11/26 16:28:35 UTC

DO NOT REPLY [Bug 25020] New: - #include iostream.h in util/XMLIBM1047Transcoder - build fails under MSVC .NET 2003

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25020>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25020

#include iostream.h in util/XMLIBM1047Transcoder - build fails under MSVC .NET 2003

           Summary: #include iostream.h in util/XMLIBM1047Transcoder - build
                    fails under MSVC .NET 2003
           Product: Xerces-C++
           Version: Nightly build (please specify the date)
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Build
        AssignedTo: xerces-c-dev@xml.apache.org
        ReportedBy: werner.bailer@joanneum.at


The fixed 

#include <iostream.h>

in util/XMLIBM1047Transcoder should be replaced by the conditional include 
block used in other files to allow compilation in MSVC .NET 2003.

#if defined(XERCES_NEW_IOSTREAMS)
#include <iostream>
#else
#include <iostream.h>
#endif

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-c-dev-help@xml.apache.org