Add missing include
authorCsaba Kertesz <csaba.kertesz@gmail.com>
Thu, 13 Oct 2016 21:39:07 +0000 (14:39 -0700)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Thu, 13 Oct 2016 21:53:48 +0000 (14:53 -0700)
Summary:
String.h references std::vector, but it is not included.
Closes https://github.com/facebook/folly/pull/496

Reviewed By: yfeldblum, meyering

Differential Revision: D4009410

Pulled By: Orvid

fbshipit-source-id: f21ce0d5833f0959a83e75e2fbcbe2beedbb5b6f

folly/String.h

index 5d631340fd18ff3569183d583a51f0e5cbd5813a..c9982f356d8cd26ee30ede7534db150d1397008e 100644 (file)
@@ -20,6 +20,7 @@
 #include <exception>
 #include <stdarg.h>
 #include <string>
+#include <vector>
 #include <boost/type_traits.hpp>
 #include <boost/regex/pending/unicode_iterator.hpp>