Skip to content

Commit b8e9997

Browse files
committed
cp: format fix
1 parent b1f5288 commit b8e9997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ortools/constraint_solver/model_cache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ inline uint64_t Hash1(int64_t value) {
5050
inline uint64_t Hash1(int value) { return Hash1(static_cast<uint32_t>(value)); }
5151

5252
inline uint64_t Hash1(void* const ptr) {
53-
#if defined(__x86_64__) || defined(_M_X64) || defined(__powerpc64__) || \
53+
#if defined(__x86_64__) || defined(_M_X64) || defined(__powerpc64__) || \
5454
defined(__aarch64__) || (defined(_MIPS_SZPTR) && (_MIPS_SZPTR == 64)) || \
5555
(defined(INTPTR_MAX) && defined(INT64_MAX) && (INTPTR_MAX == INT64_MAX))
5656
return Hash1(reinterpret_cast<uint64_t>(ptr));

0 commit comments

Comments
 (0)