facebook / folly

An open-source C++ library developed and used at Facebook.

Home Page:https://groups.google.com/forum/?fromgroups#!forum/facebook-folly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some experimental headers are same as non-experimental headers

yurivict opened this issue · comments

For example, these are duplicated:

include/folly/experimental/channels/detail/AtomicQueue.h
include/folly/experimental/channels/detail/ChannelBridge.h
include/folly/experimental/channels/detail/FunctionTraits.h
include/folly/experimental/channels/detail/IntrusivePtr.h
include/folly/experimental/channels/detail/MultiplexerTraits.h
include/folly/experimental/channels/detail/PointerVariant.h
include/folly/experimental/channels/detail/Utility.h
include/folly/channels/detail/AtomicQueue.h
include/folly/channels/detail/ChannelBridge.h
include/folly/channels/detail/FunctionTraits.h
include/folly/channels/detail/IntrusivePtr.h
include/folly/channels/detail/MultiplexerTraits.h
include/folly/channels/detail/PointerVariant.h
include/folly/channels/detail/Utility.h

Is this intended?

We are currently in the process of moving a number of things out of folly/experimental and into folly proper. What you're seeing is one of the in-between states while we migrate everything internally. Once the move is done, the version in folly/experimental/ will no longer exist.