From e372e3d34fd57695d9655336b43e13be8784c81d Mon Sep 17 00:00:00 2001 From: James Sedgwick Date: Wed, 18 Oct 2017 11:49:02 -0700 Subject: [PATCH] move Partial to functional/ Summary: as above Reviewed By: ngoyal Differential Revision: D6087941 fbshipit-source-id: 948ff4f2faa87dd34f87d14ea01c83335f850a27 --- folly/Makefile.am | 2 +- folly/{ => functional}/Partial.h | 0 folly/{ => functional}/test/PartialTest.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename folly/{ => functional}/Partial.h (100%) rename folly/{ => functional}/test/PartialTest.cpp (98%) diff --git a/folly/Makefile.am b/folly/Makefile.am index 7159baea..e91dba2d 100644 --- a/folly/Makefile.am +++ b/folly/Makefile.am @@ -205,6 +205,7 @@ nobase_follyinclude_HEADERS = \ Format.h \ Format-inl.h \ functional/Invoke.h \ + functional/Partial.h \ futures/Barrier.h \ futures/Future-pre.h \ futures/helpers.h \ @@ -341,7 +342,6 @@ nobase_follyinclude_HEADERS = \ Overload.h \ PackedSyncPtr.h \ Padded.h \ - Partial.h \ PicoSpinLock.h \ Portability.h \ portability/Asm.h \ diff --git a/folly/Partial.h b/folly/functional/Partial.h similarity index 100% rename from folly/Partial.h rename to folly/functional/Partial.h diff --git a/folly/test/PartialTest.cpp b/folly/functional/test/PartialTest.cpp similarity index 98% rename from folly/test/PartialTest.cpp rename to folly/functional/test/PartialTest.cpp index aecd26d9..0a037ad0 100644 --- a/folly/test/PartialTest.cpp +++ b/folly/functional/test/PartialTest.cpp @@ -17,7 +17,7 @@ #include #include -#include +#include #include -- 2.34.1