From 259578dbca1afaae4e49b8e1b917f462e5506c01 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 27 Feb 2024 13:58:29 -0300 Subject: [PATCH] Test readability-qualified-auto check --- examples/helloworld.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/helloworld.cpp b/examples/helloworld.cpp index e846c3f27..d624e7d6f 100644 --- a/examples/helloworld.cpp +++ b/examples/helloworld.cpp @@ -39,6 +39,8 @@ void draw_window(os::Window* window) int app_main(int argc, char* argv[]) { + auto ptr = argv; + os::SystemRef system = os::make_system(); system->setAppMode(os::AppMode::GUI);