From 43c165ca7096ed113b385a16e11ecbee8e63ff02 Mon Sep 17 00:00:00 2001 From: asuessenbach Date: Tue, 20 Aug 2024 09:18:03 +0200 Subject: [PATCH] formatting --- framework/platform/ios/ios_platform.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/framework/platform/ios/ios_platform.h b/framework/platform/ios/ios_platform.h index 852e151..0fda3e0 100644 --- a/framework/platform/ios/ios_platform.h +++ b/framework/platform/ios/ios_platform.h @@ -24,19 +24,19 @@ namespace vkb class IosPlatform : public Platform { -public: - IosPlatform(const PlatformContext &context); - - virtual ~IosPlatform() = default; - - virtual const char *get_surface_extension(); - void* view; + public: + IosPlatform(const PlatformContext &context); -protected: - bool uses_internal_looping() const override - { - return false; - } - virtual void create_window(const Window::Properties &properties) override; + virtual ~IosPlatform() = default; + + virtual const char *get_surface_extension(); + void *view; + + protected: + bool uses_internal_looping() const override + { + return false; + } + virtual void create_window(const Window::Properties &properties) override; }; } // namespace vkb -- 2.43.0.windows.1