Skip to content

Commit

Permalink
Merge pull request #23791 from compnerd/you-know-nothing-clang
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-ci authored Apr 4, 2019
2 parents 8fc305c + c697ddd commit 5150981
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions stdlib/public/SwiftShims/LibcShims.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ float _swift_stdlib_log1pf(float x) {
static inline SWIFT_ALWAYS_INLINE
float _swift_stdlib_hypotf(float x, float y) {
#if defined(_WIN32)
extern float _hypotf(float, float);
return _hypotf(x, y);
#else
return __builtin_hypotf(x, y);
Expand Down

0 comments on commit 5150981

Please sign in to comment.