From 94e867b66fce4d1cae48d6362068cfd886f0ea04 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 22 Jul 2022 14:35:17 +0200 Subject: [PATCH] bazel: fix build --- ortools/algorithms/BUILD.bazel | 1 + ortools/algorithms/dynamic_partition.h | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ortools/algorithms/BUILD.bazel b/ortools/algorithms/BUILD.bazel index 34729a2992..50d8876093 100644 --- a/ortools/algorithms/BUILD.bazel +++ b/ortools/algorithms/BUILD.bazel @@ -104,6 +104,7 @@ cc_library( "//ortools/base:murmur", "@com_google_absl//absl/strings", "@com_google_absl//absl/strings:str_format", + "@com_google_absl//absl/types:span", ], ) diff --git a/ortools/algorithms/dynamic_partition.h b/ortools/algorithms/dynamic_partition.h index 362d63ed28..4209f3c860 100644 --- a/ortools/algorithms/dynamic_partition.h +++ b/ortools/algorithms/dynamic_partition.h @@ -34,9 +34,8 @@ #include #include -#include "ortools/base/logging.h" - #include "absl/types/span.h" +#include "ortools/base/logging.h" namespace operations_research {