Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
qt_version: ['6.8.3']
qt_version: ['6.10.3']
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
Expand Down
4 changes: 2 additions & 2 deletions hekatoolslib/exportNPY.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ namespace hkLib {
void NPYorBINExportTrace(std::istream& datafile, hkTreeNode& TrRecord, std::filesystem::path filename, bool createJSON = true)
{
assert(TrRecord.getLevel() == hkTreeNode::LevelTrace);
locale_manager lm;
lm.setLocale("C");
auto yunit = TrRecord.getString(TrYUnit);
auto xunit = TrRecord.getString(TrXUnit);
auto x0 = TrRecord.extractLongReal(TrXStart);
Expand All @@ -140,8 +142,6 @@ namespace hkLib {
}

if (createJSON) {
locale_manager lm;
lm.setLocale("C");
filename.replace_extension("json");
std::ofstream jsonfile(filename);
if (!jsonfile) {
Expand Down
Loading