From 90d8c8db745982049b34538b2fe132b8545885b9 Mon Sep 17 00:00:00 2001 From: Lander Gallastegi Date: Fri, 13 Jun 2025 23:55:48 +0200 Subject: [PATCH] clang --- 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 f3d2ee072..d539e0924 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 (); + const u8 new_count = state.AddDelta(); 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 () : state.AddDelta<0>(); + update ? state.AddDelta() : state.AddDelta<0>(); if (auto new_perms = state.Perm(); new_perms != perms) [[unlikely]] { // If the protection changed add pending (un)protect action