diff --git a/ortools/graph/BUILD.bazel b/ortools/graph/BUILD.bazel index 9c6e2d8532..ce0aeeba3c 100644 --- a/ortools/graph/BUILD.bazel +++ b/ortools/graph/BUILD.bazel @@ -858,7 +858,7 @@ cc_test( deps = [ ":iterators", "//ortools/base:gmock_main", - "//ortools/base:int_type", + "//ortools/base:strong_int", ], ) diff --git a/ortools/graph/iterators_test.cc b/ortools/graph/iterators_test.cc index 4f469de963..47fba3b100 100644 --- a/ortools/graph/iterators_test.cc +++ b/ortools/graph/iterators_test.cc @@ -18,12 +18,12 @@ #include #include "gtest/gtest.h" -#include "ortools/base/int_type.h" +#include "ortools/base/strong_int.h" namespace util { namespace { -DEFINE_INT_TYPE(TestIndex, int64_t); +DEFINE_STRONG_INT_TYPE(TestIndex, int64_t); #if __cplusplus >= 202002L static_assert(std::random_access_iterator>);