From 89f9bd3ef68c3e617ad527e5e1f6dfaafc6e1a80 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Sun, 26 Feb 2017 19:19:28 -0800 Subject: [PATCH] Use cstdint instead of inttypes.h Summary: This is the only place `inttypes.h` is used in Folly and it's used in a context where `cstdint` would have sufficed. Reviewed By: yfeldblum Differential Revision: D4619248 fbshipit-source-id: e67dccb7d8bf1ad5f7539d4b039590253e8d8c79 --- folly/io/async/DelayedDestructionBase.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/folly/io/async/DelayedDestructionBase.h b/folly/io/async/DelayedDestructionBase.h index 65c326f6..2b329db1 100644 --- a/folly/io/async/DelayedDestructionBase.h +++ b/folly/io/async/DelayedDestructionBase.h @@ -18,13 +18,14 @@ #include #include +#include +#include #include #include #include + #include -#include #include -#include namespace folly { -- 2.34.1