diff options
author | 2016-05-12 00:06:54 +1000 | |
---|---|---|
committer | 2016-05-12 00:06:54 +1000 | |
commit | 7a423d0160839b28446d4100087c07019a75399d (patch) | |
tree | 2e3e37c5be23772c894ce523608d139bb450d543 /3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp | |
parent | 6a53a6aeff4f6436210127eeb5dc9111b2da00f4 (diff) |
Update to LZMA 16.0 [Vas Crabb]
Diffstat (limited to '3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp')
-rw-r--r-- | 3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp b/3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp index e1fcff6dcd4..6331c1b9e12 100644 --- a/3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp +++ b/3rdparty/lzma/CPP/7zip/Compress/BranchRegister.cpp @@ -8,9 +8,12 @@ #include "BranchMisc.h" +namespace NCompress { +namespace NBranch { + #define CREATE_BRA(n) \ - REGISTER_FILTER_CREATE(CreateBra_Decoder_ ## n, CBranchCoder(n ## _Convert, false)) \ - REGISTER_FILTER_CREATE(CreateBra_Encoder_ ## n, CBranchCoder(n ## _Convert, true)) \ + REGISTER_FILTER_CREATE(CreateBra_Decoder_ ## n, CCoder(n ## _Convert, false)) \ + REGISTER_FILTER_CREATE(CreateBra_Encoder_ ## n, CCoder(n ## _Convert, true)) \ CREATE_BRA(PPC) CREATE_BRA(IA64) @@ -34,3 +37,5 @@ REGISTER_CODECS_VAR }; REGISTER_CODECS(Branch) + +}} |