minor cleanup

This commit is contained in:
Laurent Perron
2025-05-14 13:33:34 +02:00
parent 0a5e8db6af
commit f49f4ffe85
2 changed files with 3 additions and 3 deletions

View File

@@ -858,7 +858,7 @@ cc_test(
deps = [
":iterators",
"//ortools/base:gmock_main",
"//ortools/base:int_type",
"//ortools/base:strong_int",
],
)

View File

@@ -18,12 +18,12 @@
#include <vector>
#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<IntegerRangeIterator<int>>);