From 02bb2c340cde43595ca8aacd6585751c8e58541a Mon Sep 17 00:00:00 2001 From: Nicholas Ormrod Date: Fri, 1 May 2015 14:45:31 -0700 Subject: [PATCH] Updated string.h Summary: @markisaa, @ldbrandy: stdarg.h is for ellipses arguments, ##...##, which this file does contain. The pull request indicates that this header is required for windows. Given that adding it doesn't hurt, and should be there anyways, I'd say go on this pull request. Fixed a fatal error when compiling folly for HHVM Signed-off-by: Nicholas Ormrod Test Plan: contbuild Reviewed By: markisaa@fb.com Subscribers: folly-diffs@, yfeldblum, chalfant, ldbrandy, markisaa FB internal diff: D1999557 Tasks: 6783581 Signature: t1:1999557:1429220813:0580882b8a55d86f51cdd602d2d152920d368b75 --- folly/String.h | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/String.h b/folly/String.h index 167a6b5c..586dd8d6 100644 --- a/folly/String.h +++ b/folly/String.h @@ -18,6 +18,7 @@ #define FOLLY_BASE_STRING_H_ #include +#include #include #include -- 2.34.1