From 54cbc6f03e7862db3eb30e91184a874185dffc4f Mon Sep 17 00:00:00 2001 From: silverqx Date: Mon, 25 Apr 2022 15:03:20 +0200 Subject: [PATCH] updated comment --- tom/src/tom/concerns/interactswithio.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tom/src/tom/concerns/interactswithio.cpp b/tom/src/tom/concerns/interactswithio.cpp index 404385e33..4d0f4c683 100644 --- a/tom/src/tom/concerns/interactswithio.cpp +++ b/tom/src/tom/concerns/interactswithio.cpp @@ -262,7 +262,8 @@ InteractsWithIO::table(const TableRow &headers, const std::vector &row // TODO study tom, "locale::facet::_S_create_c_locale name not valid" for all locales, how the hell it works? silverqx /* Set locale to C until I discover how the heck this works on MSYS2 because every - other locale throws "locale::facet::_S_create_c_locale name not valid". */ + other locale throws "locale::facet::_S_create_c_locale name not valid", + ok it looks like MSYS2 only supports "C" and "POSIX" locale, nothing else. */ #ifdef __MINGW32__ table.format().locale("C"); #endif