From ed1e3c56efd8399e9c4a818ea0cd0cefd292bfd4 Mon Sep 17 00:00:00 2001 From: Lander Gallastegi Date: Tue, 10 Jun 2025 00:37:48 +0200 Subject: [PATCH] clang-format --- src/video_core/page_manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/page_manager.cpp b/src/video_core/page_manager.cpp index 7686b58bf..911b14e4b 100644 --- a/src/video_core/page_manager.cpp +++ b/src/video_core/page_manager.cpp @@ -225,7 +225,7 @@ struct PageManager::Impl { PageState& state = cached_pages[page]; // Apply the change to the page state - const u8 new_count = state.AddDelta < track ? 1 : -1 > (); + const u8 new_count = state.AddDelta< track ? 1 : -1 > (); if (auto new_perms = state.Perm(); new_perms != perms) [[unlikely]] { // If the protection changed add pending (un)protect action @@ -293,7 +293,7 @@ struct PageManager::Impl { // Apply the change to the page state const u8 new_count = - update ? state.AddDelta < track ? 1 : -1 > () : state.AddDelta<0>(); + update ? state.AddDelta< track ? 1 : -1 > () : state.AddDelta<0>(); if (auto new_perms = state.Perm(); new_perms != perms) [[unlikely]] { // If the protection changed add pending (un)protect action