This commit is contained in:
Elena.Subbotina
2023-02-17 10:46:38 +03:00
parent 8e36d60e4b
commit 00e9550927

View File

@ -43,9 +43,10 @@ public:
FStreamWrapper(std::string filename, std::ios_base::openmode openmode) :
std::fstream(filename, openmode) {}
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(_WIN64)
FStreamWrapper(std::wstring filename, std::ios_base::openmode openmode) :
std::fstream(filename, openmode) {}
#endif
inline _INT64 tell() override {
return std::fstream::tellg();
}