From c79d034bee402566c8f907a60c86d65c75519e69 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Tue, 12 Jan 2016 16:22:47 -0800 Subject: [PATCH] Add a preprocessor guard around __STDC_LIMIT_MACROS in IOBuf.cpp Summary: Adding the standard preprocessor guard around the `#define __STD_LIMIT_MACROS` in IOBuf.cpp. public Reviewed By: knekritz Differential Revision: D2825816 fb-gh-sync-id: 191824ec8d1f837e2b8380a2f8451972c421ceaa --- folly/io/IOBuf.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/folly/io/IOBuf.cpp b/folly/io/IOBuf.cpp index 35c4e102..09ec25b6 100644 --- a/folly/io/IOBuf.cpp +++ b/folly/io/IOBuf.cpp @@ -14,7 +14,9 @@ * limitations under the License. */ +#ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS +#endif #include -- 2.34.1