From: Bert Maher Date: Sat, 26 Mar 2016 03:36:30 +0000 (-0700) Subject: Fix portability/Time.h on OSX X-Git-Tag: 2016.07.26~412 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b6ed6b394419ab079fa2ddfd2de053fb7f6e1b95;p=folly.git Fix portability/Time.h on OSX Summary: It needs stdint to define uint8_t Reviewed By: yfeldblum, mzlee Differential Revision: D3101140 fb-gh-sync-id: 308507af1ccd81e2eb389a400376556a6cc597b2 fbshipit-source-id: 308507af1ccd81e2eb389a400376556a6cc597b2 --- diff --git a/folly/Benchmark.h b/folly/Benchmark.h index e73dc7c9..7ca0b748 100644 --- a/folly/Benchmark.h +++ b/folly/Benchmark.h @@ -17,9 +17,11 @@ #ifndef FOLLY_BENCHMARK_H_ #define FOLLY_BENCHMARK_H_ -#include #include #include // for FB_ANONYMOUS_VARIABLE +#include +#include + #include #include #include diff --git a/folly/portability/Time.h b/folly/portability/Time.h index 1980377f..642a95de 100755 --- a/folly/portability/Time.h +++ b/folly/portability/Time.h @@ -16,6 +16,7 @@ #pragma once +#include #include #include