mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-24 17:13:54 +00:00
Fixed some minor compiler warnings on Linux
This commit is contained in:
parent
d89c3b7c6f
commit
a5d34271f2
5 changed files with 13 additions and 12 deletions
|
|
@ -58,7 +58,7 @@ void daeStringTable::clear()
|
|||
{
|
||||
unsigned int i;
|
||||
for (i=0;i<_stringBuffersList.getCount();i++)
|
||||
#if _MSC_VER <= 1200
|
||||
#if defined(_MSC_VER) && (_MSC_VER <= 1200)
|
||||
delete [] (char *) _stringBuffersList[i];
|
||||
#else
|
||||
delete [] _stringBuffersList[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue