[PATCH] D26377: [libc++] Remove unnecessary MSVCRT exclusions
Shoaib Meenai via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 7 16:32:48 PST 2016
smeenai created this revision.
smeenai added reviewers: compnerd, EricWF, mclow.lists.
smeenai added a subscriber: cfe-commits.
Visual Studio 2013 and up have these functions, and we don't need to
support older versions.
https://reviews.llvm.org/D26377
Files:
include/cstdio
Index: include/cstdio
===================================================================
--- include/cstdio
+++ include/cstdio
@@ -121,11 +121,9 @@
using ::snprintf;
using ::sprintf;
using ::sscanf;
-#ifndef _LIBCPP_MSVCRT
using ::vfprintf;
using ::vfscanf;
using ::vsscanf;
-#endif // _LIBCPP_MSVCRT
using ::vsnprintf;
using ::vsprintf;
using ::fgetc;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D26377.77117.patch
Type: text/x-patch
Size: 363 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20161108/3874aba7/attachment.bin>
More information about the cfe-commits
mailing list