This reduces non-unity build time by ~2% and build size by ~0.5%.
This PR is a 'clean' version of #6199 updated to latest development Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
|
||||
|
||||
#include <ATLEntities.h>
|
||||
#include <AzCore/IO/Streamer/FileRequest.h>
|
||||
|
||||
namespace Audio
|
||||
{
|
||||
@@ -285,5 +286,22 @@ namespace Audio
|
||||
|
||||
return sResult;
|
||||
}
|
||||
CATLAudioFileEntry::CATLAudioFileEntry(const char * const filePath, IATLAudioFileEntryData * const implData)
|
||||
: m_filePath(filePath)
|
||||
, m_fileSize(0)
|
||||
, m_useCount(0)
|
||||
, m_memoryBlockAlignment(AUDIO_MEMORY_ALIGNMENT)
|
||||
, m_flags(eAFF_NOTFOUND)
|
||||
, m_dataScope(eADS_ALL)
|
||||
, m_memoryBlock(nullptr)
|
||||
, m_implData(implData)
|
||||
{
|
||||
}
|
||||
|
||||
CATLAudioFileEntry::~CATLAudioFileEntry()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endif // !AUDIO_RELEASE
|
||||
} // namespace Audio
|
||||
|
||||
Reference in New Issue
Block a user