Enable --lzma for PackMach*.

This commit is contained in:
John Reiser
2007-02-07 11:23:21 -08:00
parent 4cb57d9059
commit fb39d6304a
2 changed files with 7 additions and 4 deletions
+3 -4
View File
@@ -63,11 +63,10 @@ PackMachBase<T>::~PackMachBase()
}
template <class T>
const int *PackMachBase<T>::getCompressionMethods(int /*method*/, int /*level*/) const
const int *PackMachBase<T>::getCompressionMethods(int method, int level) const
{
// There really is no LE bias in M_NRV2E_LE32.
static const int m_nrv2e[] = { M_NRV2E_LE32, M_END };
return m_nrv2e;
// There really is no LE bias.
return Packer::getDefaultCompressionMethods_le32(method, level);
}