Skip to content

Commit f3bc109

Browse files
committed
Fix types in debug cups on Apple Clang
1 parent 652860a commit f3bc109

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plugins/intel_cpu/src/memory_control.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,9 @@ std::pair<int64_t, int64_t> calculateOptimalMemorySize(std::vector<MemorySolver:
356356
};
357357
std::priority_queue<MemorySolver::Box, std::vector<MemorySolver::Box>, decltype(boxCmp)> pq(boxCmp);
358358

359-
ptrdiff_t current_size = 0;
360-
ptrdiff_t max_current_size = 0;
361-
ptrdiff_t max_box_size = 0;
359+
int64_t current_size = 0;
360+
int64_t max_current_size = 0;
361+
int64_t max_box_size = 0;
362362

363363
for (const auto& box : boxes) {
364364
max_box_size = std::max(max_box_size, box.size);

0 commit comments

Comments
 (0)