From f49f4ffe85e2284a55a232097cb09d4dc7061930 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Wed, 14 May 2025 13:33:34 +0200 Subject: [PATCH] minor cleanup --- ortools/graph/BUILD.bazel | 2 +- ortools/graph/iterators_test.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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>);