We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 640aaeb commit 77e5e44Copy full SHA for 77e5e44
2 files changed
ortools/graph/BUILD.bazel
@@ -858,7 +858,7 @@ cc_test(
858
deps = [
859
":iterators",
860
"//ortools/base:gmock_main",
861
- "//ortools/base:int_type",
+ "//ortools/base:strong_int",
862
],
863
)
864
ortools/graph/iterators_test.cc
@@ -18,12 +18,12 @@
18
#include <vector>
19
20
#include "gtest/gtest.h"
21
-#include "ortools/base/int_type.h"
+#include "ortools/base/strong_int.h"
22
23
namespace util {
24
namespace {
25
26
-DEFINE_INT_TYPE(TestIndex, int64_t);
+DEFINE_STRONG_INT_TYPE(TestIndex, int64_t);
27
28
#if __cplusplus >= 202002L
29
static_assert(std::random_access_iterator<IntegerRangeIterator<int>>);
0 commit comments