From 2bb2c015056554c0a1cc0cda2bdeb84bc11672ff Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Thu, 15 Jun 2017 16:52:29 -0700 Subject: [PATCH] Include the time portability header in GlogStyleFormatter.cpp Summary: It is needed on Windows for the `localtime_r` function. Reviewed By: simpkins Differential Revision: D5259944 fbshipit-source-id: e380ecf42252ecabec168cf87668ace3ff4c0a9f --- folly/experimental/logging/GlogStyleFormatter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/experimental/logging/GlogStyleFormatter.cpp b/folly/experimental/logging/GlogStyleFormatter.cpp index cf8c7a7b..44b65747 100644 --- a/folly/experimental/logging/GlogStyleFormatter.cpp +++ b/folly/experimental/logging/GlogStyleFormatter.cpp @@ -18,6 +18,7 @@ #include #include #include +#include namespace { using folly::StringPiece; -- 2.34.1