aboutsummaryrefslogtreecommitdiffstats
path: root/devel/electron35/files/patch-third__party_perfetto_src_base_string__utils.cc
blob: 91d3993a7cd55862b75b1207184c47d40a63718c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- third_party/perfetto/src/base/string_utils.cc.orig	2025-03-24 20:50:14 UTC
+++ third_party/perfetto/src/base/string_utils.cc
@@ -39,7 +39,8 @@ double StrToD(const char* nptr, char** endptr) {
 // Locale-independant as possible version of strtod.
 double StrToD(const char* nptr, char** endptr) {
 #if PERFETTO_BUILDFLAG(PERFETTO_OS_ANDROID) || \
-    PERFETTO_BUILDFLAG(PERFETTO_OS_LINUX_BUT_NOT_QNX) || \
+    (PERFETTO_BUILDFLAG(PERFETTO_OS_LINUX_BUT_NOT_QNX) && \
+    !PERFETTO_BUILDFLAG(PERFETTO_OS_BSD)) || \
     PERFETTO_BUILDFLAG(PERFETTO_OS_APPLE)
   static auto c_locale = newlocale(LC_ALL, "C", nullptr);
   return strtod_l(nptr, endptr, c_locale);