From ba49490b0480d76ca7b7290fa146056640c95efc Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Tue, 9 Nov 2021 16:25:32 +0800 Subject: [PATCH] Reorder header files for segcore/reduce_c.cpp (#11480) Signed-off-by: yudong.cai --- internal/core/src/segcore/reduce_c.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/core/src/segcore/reduce_c.cpp b/internal/core/src/segcore/reduce_c.cpp index 26ee6a7baa..428f78b0af 100644 --- a/internal/core/src/segcore/reduce_c.cpp +++ b/internal/core/src/segcore/reduce_c.cpp @@ -9,19 +9,19 @@ // 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 #include +#include #include "common/Consts.h" #include "common/Types.h" #include "exceptions/EasyAssert.h" #include "log/Log.h" +#include "pb/milvus.pb.h" #include "query/Plan.h" -#include "segcore/reduce_c.h" #include "segcore/Reduce.h" #include "segcore/ReduceStructure.h" #include "segcore/SegmentInterface.h" -#include "pb/milvus.pb.h" +#include "segcore/reduce_c.h" using SearchResult = milvus::SearchResult;