diff options
author | Don Kjer <don@lindenlab.com> | 2012-09-20 04:57:04 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2012-09-20 04:57:04 +0000 |
commit | 588dc32ae46fb106af37eb21e0a6fbe1effa3a00 (patch) | |
tree | 3c0a3cd2298bef1b3be3f44eb0bc7f1da2917fe6 /indra | |
parent | f4ae8f1c4db6caabef629a7c9bb2d31344c61874 (diff) | |
parent | 7d62343f4444e05d30092e6219bfea564a8e8e17 (diff) |
Merge sunshine-internal -> sunshine-experimental
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llfile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcommon/llfile.cpp b/indra/llcommon/llfile.cpp index 38b0dfdaf1..deab7a87fc 100644 --- a/indra/llcommon/llfile.cpp +++ b/indra/llcommon/llfile.cpp @@ -411,6 +411,9 @@ LLFILE * LLFile::_Fiopen(const std::string& filename, //#endif //} + +// *TODO: Seek the underlying c stream for better cross-platform compatibility? +#if !LL_WINDOWS llstdio_filebuf::int_type llstdio_filebuf::overflow(llstdio_filebuf::int_type __c) { int_type __ret = traits_type::eof(); @@ -829,6 +832,7 @@ int llstdio_filebuf::sync() { return (_M_file.sync() == 0 ? 0 : -1); } +#endif /************** input file stream ********************************/ |