diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-09-07 13:52:34 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-09-07 13:52:34 +0800 |
commit | bba3d52af4526ee19bd962c2448d0f8d24d4070b (patch) | |
tree | 592839be6277cb79cf81bb88091c6d0ada0e3cfc /src/ui/host | |
parent | 6e665c0b9c0d38fe597df04a517833e219bddfc1 (diff) | |
download | cru-bba3d52af4526ee19bd962c2448d0f8d24d4070b.tar.gz cru-bba3d52af4526ee19bd962c2448d0f8d24d4070b.tar.bz2 cru-bba3d52af4526ee19bd962c2448d0f8d24d4070b.zip |
Fix some compile error on macOS.
Diffstat (limited to 'src/ui/host')
-rw-r--r-- | src/ui/host/RoutedEventDispatch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/host/RoutedEventDispatch.h b/src/ui/host/RoutedEventDispatch.h index 4efc9208..98042841 100644 --- a/src/ui/host/RoutedEventDispatch.h +++ b/src/ui/host/RoutedEventDispatch.h @@ -64,7 +64,7 @@ void DispatchEvent( log += " -> "; } log += i->Resolve()->GetControlType().ToUtf8(); - CRU_LOG_TAG_DEBUG(log); + CRU_LOG_TAG_DEBUG("{}", log); } auto handled = false; |