forked from Lainports/freebsd-ports
Release notes at <https://dev.opencascade.org/content/open-cascade-technology-780-released> It includes a patch from ichesnok <ichesnok@opencascade.com> to fix the problem reported at <https://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff;h=0f6f5b64d321a988399567f6b901bef385cc8d41> PR: 277294
11 lines
725 B
C++
11 lines
725 B
C++
--- src/Standard/Standard_CString.cxx.orig 2023-12-04 15:53:08 UTC
|
|
+++ src/Standard/Standard_CString.cxx
|
|
@@ -50,7 +50,7 @@
|
|
// strtod, strtol, strtoll functions. For other system with locale-depended
|
|
// implementations problems may appear if "C" locale is not set explicitly.
|
|
#if !defined(__ANDROID__) && !defined(__QNX__) && !defined(__MINGW32__)
|
|
- #error System does not support xlocale. Import/export could be broken if C locale did not specified by application.
|
|
+ #warning System does not support xlocale. Import/export could be broken if C locale did not specified by application.
|
|
#endif
|
|
#define strtod_l(thePtr, theNextPtr, theLocale) strtod(thePtr, theNextPtr)
|
|
#endif
|