Skip to content

Commit 77e5e44

Browse files
committed
minor cleanup
1 parent 640aaeb commit 77e5e44

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ortools/graph/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ cc_test(
858858
deps = [
859859
":iterators",
860860
"//ortools/base:gmock_main",
861-
"//ortools/base:int_type",
861+
"//ortools/base:strong_int",
862862
],
863863
)
864864

ortools/graph/iterators_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
#include <vector>
1919

2020
#include "gtest/gtest.h"
21-
#include "ortools/base/int_type.h"
21+
#include "ortools/base/strong_int.h"
2222

2323
namespace util {
2424
namespace {
2525

26-
DEFINE_INT_TYPE(TestIndex, int64_t);
26+
DEFINE_STRONG_INT_TYPE(TestIndex, int64_t);
2727

2828
#if __cplusplus >= 202002L
2929
static_assert(std::random_access_iterator<IntegerRangeIterator<int>>);

0 commit comments

Comments
 (0)