bullet: Sync with upstream 3.07

This commit is contained in:
Rémi Verschelde 2020-12-17 13:51:12 +01:00
parent 214a22b98e
commit 3cbf8bde84
No known key found for this signature in database
GPG key ID: C3336907360768E1
75 changed files with 8756 additions and 7818 deletions

View file

@ -138,7 +138,7 @@ struct btDebugPtrMagic
};
};
void *btAlignedAllocInternal(size_t size, int alignment, int line, char *filename)
void *btAlignedAllocInternal(size_t size, int alignment, int line, const char *filename)
{
if (size == 0)
{
@ -195,7 +195,7 @@ void *btAlignedAllocInternal(size_t size, int alignment, int line, char *filenam
return (ret);
}
void btAlignedFreeInternal(void *ptr, int line, char *filename)
void btAlignedFreeInternal(void *ptr, int line, const char *filename)
{
void *real;