Commit 89f9bd3e authored by Christopher Dykes's avatar Christopher Dykes Committed by Facebook Github Bot

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
parent a595dcb5
...@@ -18,13 +18,14 @@ ...@@ -18,13 +18,14 @@
#include <assert.h> #include <assert.h>
#include <cstddef> #include <cstddef>
#include <cstdint>
#include <functional>
#include <memory> #include <memory>
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <boost/noncopyable.hpp> #include <boost/noncopyable.hpp>
#include <functional>
#include <glog/logging.h> #include <glog/logging.h>
#include <inttypes.h>
namespace folly { namespace folly {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment