fix dos line endings

master
Oz Linden 2014-12-12 17:21:24 -05:00
parent eae38f7d57
commit e6a7ce08ed
1 changed files with 20 additions and 20 deletions

View File

@ -62,16 +62,16 @@ namespace LLTrace
{}
public:
AccumulatorBuffer()
: mStorageSize(0),
mStorage(NULL)
{
const AccumulatorBuffer& other = *getDefaultBuffer();
resize(sNextStorageSlot);
for (S32 i = 0; i < sNextStorageSlot; i++)
{
mStorage[i] = other.mStorage[i];
}
AccumulatorBuffer()
: mStorageSize(0),
mStorage(NULL)
{
const AccumulatorBuffer& other = *getDefaultBuffer();
resize(sNextStorageSlot);
for (S32 i = 0; i < sNextStorageSlot; i++)
{
mStorage[i] = other.mStorage[i];
}
}
~AccumulatorBuffer()
@ -94,16 +94,16 @@ namespace LLTrace
}
AccumulatorBuffer(const AccumulatorBuffer& other)
: mStorageSize(0),
mStorage(NULL)
{
resize(sNextStorageSlot);
for (S32 i = 0; i < sNextStorageSlot; i++)
{
mStorage[i] = other.mStorage[i];
}
}
AccumulatorBuffer(const AccumulatorBuffer& other)
: mStorageSize(0),
mStorage(NULL)
{
resize(sNextStorageSlot);
for (S32 i = 0; i < sNextStorageSlot; i++)
{
mStorage[i] = other.mStorage[i];
}
}
void addSamples(const AccumulatorBuffer<ACCUMULATOR>& other, EBufferAppendType append_type)
{