Reorder header files for ScalarIndex (#11482)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-11-09 16:29:04 +08:00 committed by GitHub
parent 64b47ee4b3
commit 993d8ec4d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -9,6 +9,7 @@
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations under the License
#include "exceptions/EasyAssert.h"
#include "ScalarIndex.h"
namespace milvus::segcore {

View File

@ -10,14 +10,14 @@
// or implied. See the License for the specific language governing permissions and limitations under the License
#pragma once
#include "exceptions/EasyAssert.h"
#include "common/Types.h"
#include "pb/schema.pb.h"
#include <memory>
#include <vector>
#include <string>
#include <utility>
#include <vector>
#include "common/Types.h"
#include "pb/schema.pb.h"
namespace milvus::segcore {
@ -61,4 +61,5 @@ class ScalarIndexVector : public ScalarIndexBase {
private:
std::vector<std::pair<T, SegOffset>> mapping_;
};
} // namespace milvus::segcore