From 054af315ec7cbd725a9ae6d0c271710998fc56ea Mon Sep 17 00:00:00 2001 From: Nathan Bronson Date: Wed, 15 Jan 2014 15:25:04 -0800 Subject: [PATCH] include guard name cleanup for IndexedMemPool Summary: Include guard had FOLLY_DETAIL_.. even though code is in folly Test Plan: unit tests Reviewed By: davejwatson@fb.com FB internal diff: D1130269 @override-unit-failures --- folly/IndexedMemPool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/IndexedMemPool.h b/folly/IndexedMemPool.h index cef4d0ea..0c959a3c 100644 --- a/folly/IndexedMemPool.h +++ b/folly/IndexedMemPool.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef FOLLY_DETAIL_INDEXEDMEMPOOL_H -#define FOLLY_DETAIL_INDEXEDMEMPOOL_H +#ifndef FOLLY_INDEXEDMEMPOOL_H +#define FOLLY_INDEXEDMEMPOOL_H #include #include -- 2.34.1