Reorder header files for segcore/ConcurrentVector.h (#11063)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-11-02 11:02:28 +08:00 committed by GitHub
parent cf5e64ebfa
commit 623a31ab42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,20 +10,22 @@
// or implied. See the License for the specific language governing permissions and limitations under the License
#pragma once
#include <tbb/concurrent_vector.h>
#include <atomic>
#include <cassert>
#include <deque>
#include <mutex>
#include <shared_mutex>
#include <vector>
#include <utility>
#include "exceptions/EasyAssert.h"
#include "utils/Utils.h"
#include <vector>
#include <boost/container/vector.hpp>
#include <tbb/concurrent_vector.h>
#include "common/Types.h"
#include "common/Span.h"
#include "exceptions/EasyAssert.h"
#include "utils/Utils.h"
namespace milvus::segcore {