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(
385385
386386#if defined(_WIN32)
387387template <>
388- static const char *
388+ const char *
389389_swift_stdlib_strtoX_clocale_impl<float >(const char *str, float *result) {
390390 if (swift_stringIsSignalingNaN (str)) {
391391 *result = std::numeric_limits<float >::signaling_NaN ();
@@ -398,7 +398,7 @@ _swift_stdlib_strtoX_clocale_impl<float>(const char *str, float *result) {
398398}
399399
400400template <>
401- static const char *
401+ const char *
402402_swift_stdlib_strtoX_clocale_impl<double >(const char *str, double *result) {
403403 if (swift_stringIsSignalingNaN (str)) {
404404 *result = std::numeric_limits<double >::signaling_NaN ();
@@ -411,7 +411,7 @@ _swift_stdlib_strtoX_clocale_impl<double>(const char *str, double *result) {
411411}
412412
413413template <>
414- static const char *
414+ const char *
415415_swift_stdlib_strtoX_clocale_impl<long double >(const char *str, long double *result) {
416416 if (swift_stringIsSignalingNaN (str)) {
417417 *result = std::numeric_limits<long double >::signaling_NaN ();
You can’t perform that action at this time.
0 commit comments