mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-25 01:23:52 +00:00
rename overloaded function so linux and mac stop bitching
This commit is contained in:
parent
7c3fbfc9d8
commit
cd7666bf2a
2 changed files with 9 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue