Commit f9b6d012 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Move folly/Array.h

Summary: [Folly] Move `folly/Array.h` to `folly/container/`.

Reviewed By: luciang

Differential Revision: D6182858

fbshipit-source-id: 59340b96058cc6d0c7a0289e316bbde98c15d724
parent 2ee091de
...@@ -27,7 +27,6 @@ lib_LTLIBRARIES = \ ...@@ -27,7 +27,6 @@ lib_LTLIBRARIES = \
follyincludedir = $(includedir)/folly follyincludedir = $(includedir)/folly
nobase_follyinclude_HEADERS = \ nobase_follyinclude_HEADERS = \
Array.h \
Assume.h \ Assume.h \
AtomicBitSet.h \ AtomicBitSet.h \
AtomicHashArray.h \ AtomicHashArray.h \
...@@ -58,6 +57,7 @@ nobase_follyinclude_HEADERS = \ ...@@ -58,6 +57,7 @@ nobase_follyinclude_HEADERS = \
concurrency/ConcurrentHashMap.h \ concurrency/ConcurrentHashMap.h \
concurrency/CoreCachedSharedPtr.h \ concurrency/CoreCachedSharedPtr.h \
concurrency/detail/ConcurrentHashMap-detail.h \ concurrency/detail/ConcurrentHashMap-detail.h \
container/Array.h \
container/Iterator.h \ container/Iterator.h \
container/Enumerate.h \ container/Enumerate.h \
container/EvictingCacheMap.h \ container/EvictingCacheMap.h \
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#include <folly/Array.h> #include <folly/container/Array.h>
#include <folly/portability/GTest.h> #include <folly/portability/GTest.h>
#include <string> #include <string>
......
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <folly/Array.h>
#include <folly/File.h> #include <folly/File.h>
#include <folly/Range.h> #include <folly/Range.h>
#include <folly/container/Array.h>
#include <folly/experimental/TestUtil.h> #include <folly/experimental/TestUtil.h>
#include <folly/gen/Base.h> #include <folly/gen/Base.h>
#include <folly/gen/File.h> #include <folly/gen/File.h>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#pragma once #pragma once
#include <folly/Array.h> #include <folly/container/Array.h>
#include <folly/io/async/SSLContext.h> #include <folly/io/async/SSLContext.h>
namespace folly { namespace folly {
......
...@@ -45,7 +45,7 @@ spin_lock_test_SOURCES = SpinLockTest.cpp ...@@ -45,7 +45,7 @@ spin_lock_test_SOURCES = SpinLockTest.cpp
spin_lock_test_LDADD = libfollytestmain.la spin_lock_test_LDADD = libfollytestmain.la
TESTS += spin_lock_test TESTS += spin_lock_test
array_test_SOURCES = ArrayTest.cpp array_test_SOURCES = ../container/test/ArrayTest.cpp
array_test_LDADD = libfollytestmain.la array_test_LDADD = libfollytestmain.la
TESTS += array_test TESTS += array_test
......
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
#include <sstream> #include <sstream>
#include <system_error> #include <system_error>
#include <folly/Array.h>
#include <folly/String.h> #include <folly/String.h>
#include <folly/container/Array.h>
#include <folly/experimental/TestUtil.h> #include <folly/experimental/TestUtil.h>
#include <folly/portability/GTest.h> #include <folly/portability/GTest.h>
#include <folly/portability/Sockets.h> #include <folly/portability/Sockets.h>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include <boost/regex.hpp> #include <boost/regex.hpp>
#include <folly/Array.h> #include <folly/container/Array.h>
#include <folly/portability/GTest.h> #include <folly/portability/GTest.h>
using namespace folly; using namespace folly;
......
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