- Response file improvements:

* Fixed: Trying to use a response file would result in infinite looping until memory was
    exhausted.
  * Fixed: Response files were read after coalescing file parameters, which would lead to
    non-coalesced parameters if the original command line and response file both had them.
  * You can now use more than one response file.
  * Response files can include other response files.

SVN r2334 (trunk)
This commit is contained in:
Randy Heit 2010-05-25 02:30:05 +00:00
commit 61d2a808d7
5 changed files with 84 additions and 39 deletions

View file

@ -159,10 +159,13 @@ public:
void Delete (unsigned int index, int deletecount)
{
if (index + deletecount > Count) deletecount = Count - index;
if (index + deletecount > Count)
{
deletecount = Count - index;
}
if (deletecount > 0)
{
for(int i = 0; i < deletecount; i++)
for (int i = 0; i < deletecount; i++)
{
Array[index + i].~T();
}