rename overloaded function so linux and mac stop bitching

This commit is contained in:
marauder2k7 2025-04-09 16:05:22 +01:00
parent 7c3fbfc9d8
commit cd7666bf2a
2 changed files with 9 additions and 9 deletions

View file

@ -168,12 +168,12 @@ namespace PropertyInfo
{
static const U32 bufSize = 256;
char* buffer = Con::getReturnBuffer(bufSize);
FormatProperty<T,count>(dataPtr, buffer, bufSize);
FormatPropertyBuffer<T,count>(dataPtr, buffer, bufSize);
return buffer;
}
template<typename T, size_t count>
char* FormatProperty(const void* dataPtr, char* buffer, U32 bufSize)
char* FormatPropertyBuffer(const void* dataPtr, char* buffer, U32 bufSize)
{
const T* values = reinterpret_cast<const T*>(dataPtr);
char* ptr = buffer;