1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0030130: Coding Rules - MSVC 2017 gives warnings about using of std::fpos::seekpos() within RWStl

Use of deprecated method std::fpos::seekpos() is avoided with MSVC 11 (Visual Studio 2012) and above.
This commit is contained in:
abv 2018-09-12 22:38:38 +03:00 committed by bugmaster
parent d0bcf7aa9b
commit 6b1800cb76

View File

@ -223,7 +223,10 @@ Standard_Boolean RWStl_Reader::IsAscii (Standard_IStream& theStream)
#endif
// Macro to get 64-bit position of the file from streampos
#if defined(_MSC_VER)
#if defined(_MSC_VER) && _MSC_VER < 1700
// In MSVC 2010, cast of streampos to 64-bit int is implemented incorrectly;
// work-around (relevant for files larger than 4 GB) is to use internal function seekpos().
// Since MSVC 15.8, seekpos() is deprecated and is said to always return 0.
#define GETPOS(aPos) aPos.seekpos()
#else
#define GETPOS(aPos) ((int64_t)aPos)