From f65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Tue, 29 Oct 2024 14:49:26 +0800 Subject: format * format * Minor test fixes * enable checking cpp format in ci --- tools/gfx/debug-layer/debug-fence.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/gfx/debug-layer/debug-fence.cpp') diff --git a/tools/gfx/debug-layer/debug-fence.cpp b/tools/gfx/debug-layer/debug-fence.cpp index 66c541618..4e8673578 100644 --- a/tools/gfx/debug-layer/debug-fence.cpp +++ b/tools/gfx/debug-layer/debug-fence.cpp @@ -33,7 +33,10 @@ Result DebugFence::setCurrentValue(uint64_t value) SLANG_GFX_API_FUNC; if (value < maxValueToSignal) { - GFX_DIAGNOSE_ERROR_FORMAT("Cannot set fence value (%d) to lower than pending signal value (%d) on the fence.", value, maxValueToSignal); + GFX_DIAGNOSE_ERROR_FORMAT( + "Cannot set fence value (%d) to lower than pending signal value (%d) on the fence.", + value, + maxValueToSignal); } return baseObject->setCurrentValue(value); } -- cgit v1.2.3