1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

[iOS] Fix build with warnings=extra.

(cherry picked from commit 987723b386)
This commit is contained in:
bruvzg
2022-10-31 11:45:32 +02:00
committed by Rémi Verschelde
parent 66cede8368
commit 6e29a9573c
8 changed files with 66 additions and 2 deletions

View File

@@ -34,8 +34,17 @@
#include "bullet_utilities.h"
#include "rid_bullet.h"
#if defined(__clang__) && (__clang_major__ >= 13)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
#endif
#include <BulletDynamics/ConstraintSolver/btTypedConstraint.h>
#if defined(__clang__) && (__clang_major__ >= 13)
#pragma clang diagnostic pop
#endif
/**
@author AndreaCatania
*/