File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ static const char *_swift_stdlib_strtoX_clocale_impl(
385
385
386
386
#if defined(_WIN32)
387
387
template <>
388
- static const char *
388
+ const char *
389
389
_swift_stdlib_strtoX_clocale_impl<float >(const char *str, float *result) {
390
390
if (swift_stringIsSignalingNaN (str)) {
391
391
*result = std::numeric_limits<float >::signaling_NaN ();
@@ -398,7 +398,7 @@ _swift_stdlib_strtoX_clocale_impl<float>(const char *str, float *result) {
398
398
}
399
399
400
400
template <>
401
- static const char *
401
+ const char *
402
402
_swift_stdlib_strtoX_clocale_impl<double >(const char *str, double *result) {
403
403
if (swift_stringIsSignalingNaN (str)) {
404
404
*result = std::numeric_limits<double >::signaling_NaN ();
@@ -411,7 +411,7 @@ _swift_stdlib_strtoX_clocale_impl<double>(const char *str, double *result) {
411
411
}
412
412
413
413
template <>
414
- static const char *
414
+ const char *
415
415
_swift_stdlib_strtoX_clocale_impl<long double >(const char *str, long double *result) {
416
416
if (swift_stringIsSignalingNaN (str)) {
417
417
*result = std::numeric_limits<long double >::signaling_NaN ();
You can’t perform that action at this time.
0 commit comments