diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
commit | b7a0971ad2d168e31d9a3ba93bbc59865bb1c337 (patch) | |
tree | 1d67cb0af1f6c2c8f2b054ceef7f9f764b6ff35d /platform/ios | |
parent | 64b68192cc8a13e7ed87a8f64b2d5dd6f15e4056 (diff) | |
parent | 25b28aa8877faafde9f1770f4afccab95d681d43 (diff) | |
download | redot-engine-b7a0971ad2d168e31d9a3ba93bbc59865bb1c337.tar.gz |
Merge pull request #97934 from adamscott/give-AThousandShips-a-break
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/ios.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/ios.mm b/platform/ios/ios.mm index 6943de5ac8..26067b94bb 100644 --- a/platform/ios/ios.mm +++ b/platform/ios/ios.mm @@ -42,7 +42,7 @@ void iOS::_bind_methods() { ClassDB::bind_method(D_METHOD("supports_haptic_engine"), &iOS::supports_haptic_engine); ClassDB::bind_method(D_METHOD("start_haptic_engine"), &iOS::start_haptic_engine); ClassDB::bind_method(D_METHOD("stop_haptic_engine"), &iOS::stop_haptic_engine); -}; +} bool iOS::supports_haptic_engine() { if (@available(iOS 13, *)) { |