COMP: Use new KWSys IOStream component to help print large file size integer types to streams.
This commit is contained in:
parent
c500078dcc
commit
a30e054641
|
@ -73,6 +73,14 @@ public:
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Include stream compatibility layer from KWSys.
|
||||||
|
// This is needed to work with large file support
|
||||||
|
// on some platforms whose stream operators do not
|
||||||
|
// support the large integer types.
|
||||||
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||||
|
# include <cmsys/IOStream.hxx>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
||||||
# include <fstream>
|
# include <fstream>
|
||||||
# include <iostream>
|
# include <iostream>
|
||||||
|
|
Loading…
Reference in New Issue