From 78d1c04a40275040789dce473603ab6096497f81 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Thu, 24 Oct 2013 14:40:22 -0700 Subject: [PATCH] Add missing include Summary: MemoryMapping.cpp uses DEFINE_int64() from gflags, but doesn't include it anywhere. @override-unit-failures Test Plan: OSS build failure goes away Reviewed By: seanc@fb.com FB internal diff: D1026364 --- folly/MemoryMapping.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/MemoryMapping.cpp b/folly/MemoryMapping.cpp index 1d926a1d..a6f6dd97 100644 --- a/folly/MemoryMapping.cpp +++ b/folly/MemoryMapping.cpp @@ -21,6 +21,7 @@ #include #include #include +#include DEFINE_int64(mlock_chunk_size, 1 << 20, // 1MB "Maximum bytes to mlock/munlock/munmap at once " -- 2.34.1