Use dummy IO tracer, to avoid overhead of storing data that will never be used. (See #1143.)

This was SVN commit r11007.
This commit is contained in:
Ykkrosh 2012-02-02 23:12:36 +00:00
parent b9c406551b
commit 0f4928bd0a

View File

@ -54,7 +54,7 @@ class VFS : public IVFS
public:
VFS(size_t cacheSize)
: m_cacheSize(cacheSize), m_fileCache(m_cacheSize)
, m_trace(CreateTrace(8*MiB))
, m_trace(CreateDummyTrace(8*MiB))
{
}