LGTM: [skip ci] remove some obsolete FIXME comments from source code

This commit is contained in:
wmayer
2020-07-28 09:49:20 +02:00
parent ebaac63777
commit 767b2787c1
3 changed files with 1 additions and 9 deletions

View File

@@ -246,7 +246,6 @@ ZipWriter::ZipWriter(const char* FileName)
#ifdef _MSC_VER
ZipStream.imbue(std::locale::empty());
#else
//FIXME: Check whether this is correct
ZipStream.imbue(std::locale::classic());
#endif
ZipStream.precision(std::numeric_limits<double>::digits10 + 1);
@@ -259,7 +258,6 @@ ZipWriter::ZipWriter(std::ostream& os)
#ifdef _MSC_VER
ZipStream.imbue(std::locale::empty());
#else
//FIXME: Check whether this is correct
ZipStream.imbue(std::locale::classic());
#endif
ZipStream.precision(std::numeric_limits<double>::digits10 + 1);