[libcxx-commits] [PATCH] D91328: [libcxx] Add missing _LIBCPP_FUNC_VIS on a couple win32 locale functions
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Nov 18 01:06:22 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG83a03867da12: [libcxx] Add missing _LIBCPP_FUNC_VIS on a few win32 locale functions (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91328/new/
https://reviews.llvm.org/D91328
Files:
libcxx/include/support/win32/locale_win32.h
Index: libcxx/include/support/win32/locale_win32.h
===================================================================
--- libcxx/include/support/win32/locale_win32.h
+++ libcxx/include/support/win32/locale_win32.h
@@ -201,8 +201,8 @@
#define strtof_l _strtof_l
#define strtold_l _strtold_l
#else
-float strtof_l(const char*, char**, locale_t);
-long double strtold_l(const char*, char**, locale_t);
+_LIBCPP_FUNC_VIS float strtof_l(const char*, char**, locale_t);
+_LIBCPP_FUNC_VIS long double strtold_l(const char*, char**, locale_t);
#endif
inline _LIBCPP_INLINE_VISIBILITY
int
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91328.305998.patch
Type: text/x-patch
Size: 587 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201118/1f15ead5/attachment.bin>
More information about the libcxx-commits
mailing list