Commit bfa61031 authored by James Sedgwick's avatar James Sedgwick Committed by Facebook Github Bot

move ApplyTuple to functional/

Summary: as above

Reviewed By: yfeldblum

Differential Revision: D6086563

fbshipit-source-id: ab7f50ba46ebd1dbef6438f956258b2fbb13cb5c
parent 7111b632
......@@ -358,6 +358,9 @@ if (BUILD_TESTS)
DIRECTORY fibers/test/
TEST fibers_test SOURCES FibersTest.cpp
DIRECTORY functional/test/
TEST apply_tuple_test SOURCES ApplyTupleTest.cpp
DIRECTORY futures/test/
TEST barrier_test SOURCES BarrierTest.cpp
TEST callback_lifetime_test SOURCES CallbackLifetimeTest.cpp
......@@ -474,7 +477,6 @@ if (BUILD_TESTS)
DIRECTORY test/
TEST ahm_int_stress_test SOURCES AHMIntStressTest.cpp
TEST apply_tuple_test SOURCES ApplyTupleTest.cpp
TEST arena_test SOURCES ArenaTest.cpp
TEST arena_smartptr_test SOURCES ArenaSmartPtrTest.cpp
TEST array_test SOURCES ArrayTest.cpp
......
......@@ -24,8 +24,8 @@
#include <type_traits>
#include <utility>
#include <folly/ApplyTuple.h>
#include <folly/Bits.h>
#include <folly/functional/ApplyTuple.h>
#include <folly/hash/SpookyHashV1.h>
#include <folly/hash/SpookyHashV2.h>
......
......@@ -27,7 +27,6 @@ lib_LTLIBRARIES = \
follyincludedir = $(includedir)/folly
nobase_follyinclude_HEADERS = \
ApplyTuple.h \
Arena.h \
Arena-inl.h \
Array.h \
......@@ -106,7 +105,7 @@ nobase_follyinclude_HEADERS = \
executors/ThreadPoolExecutor.h \
executors/ThreadedExecutor.h \
executors/UnboundedBlockingQueue.h \
executors/QueuedImmediateExecutor.h \
functional/ApplyTuple.h \
Demangle.h \
DiscriminatedPtr.h \
DynamicConverter.h \
......
......@@ -16,7 +16,7 @@
#pragma once
#include <folly/ApplyTuple.h>
#include <folly/functional/ApplyTuple.h>
namespace folly {
......
......@@ -16,7 +16,7 @@
#include <iostream>
#include <folly/ApplyTuple.h>
#include <folly/functional/ApplyTuple.h>
#include <folly/portability/GTest.h>
#include <array>
......
......@@ -18,7 +18,7 @@
#include <map>
#include <vector>
#include <folly/ApplyTuple.h>
#include <folly/functional/ApplyTuple.h>
#include <folly/gen/String.h>
#include <folly/portability/GTest.h>
......
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