From: Christopher Dykes Date: Mon, 27 Feb 2017 03:19:28 +0000 (-0800) Subject: Use cstdint instead of inttypes.h X-Git-Tag: v2017.03.06.00~17 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=89f9bd3ef68c3e617ad527e5e1f6dfaafc6e1a80;p=folly.git 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 --- 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 {