Skip to content

Commit

Permalink
Set specific locale
Browse files Browse the repository at this point in the history
  • Loading branch information
elken committed Jan 29, 2025
1 parent 642f3b5 commit 4b4b46d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
- name: Validate formatting
shell: bash
working-directory: ${{ github.workspace }}/compiler+runtime
run: ${{ github.workspace }}/compiler+runtime/bin/ci/validate-formatting
run: ./bin/ci/validate-formatting

- if: ${{ env.CODECOV }} == "on"
name: Upload report to Codecov
Expand Down
2 changes: 1 addition & 1 deletion compiler+runtime/test/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
int main(int const argc, char const **argv)
try
{
std::locale::global(std::locale(""));
std::locale::global(std::locale("en_US.UTF-8"));

GC_set_all_interior_pointers(1);
GC_enable();
Expand Down

0 comments on commit 4b4b46d

Please sign in to comment.