Skip to content

Commit

Permalink
Fix build on Alpine edge (#45352)
Browse files Browse the repository at this point in the history
The atoll definition in the pal.h was leaking into the PAL implementation and
on Alpine edge, the difference in throws() classification was causing a build
break.
  • Loading branch information
janvorli authored Nov 30, 2020
1 parent 1edc35f commit 839ad29
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/coreclr/src/pal/src/include/pal/palinternal.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ function_name() to call the system's implementation
#define memset DUMMY_memset
#define memmove DUMMY_memmove
#define memchr DUMMY_memchr
#define atoll DUMMY_atoll
#define strlen DUMMY_strlen
#define stricmp DUMMY_stricmp
#define strstr DUMMY_strstr
Expand Down Expand Up @@ -357,6 +358,7 @@ function_name() to call the system's implementation
#undef memset
#undef memmove
#undef memchr
#undef atoll
#undef strlen
#undef strnlen
#undef wcsnlen
Expand Down

0 comments on commit 839ad29

Please sign in to comment.