diff options
Diffstat (limited to 'library/cpp/codecs')
| -rw-r--r-- | library/cpp/codecs/greedy_dict/gd_builder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/codecs/greedy_dict/gd_builder.cpp b/library/cpp/codecs/greedy_dict/gd_builder.cpp index 11072e889da..561bfbca015 100644 --- a/library/cpp/codecs/greedy_dict/gd_builder.cpp +++ b/library/cpp/codecs/greedy_dict/gd_builder.cpp @@ -11,7 +11,7 @@ namespace NGreedyDict { void TDictBuilder::RebuildCounts(ui32 maxcand, bool final) { if (!Current) { - Current = MakeHolder<TEntrySet>(); + Current = MakeHolder<TEntrySet>(); Current->InitWithAlpha(); } @@ -24,7 +24,7 @@ namespace NGreedyDict { CompoundCountsPool.Clear(); if (!final) { - CompoundCounts = MakeHolder<TCompoundCounts>(&CompoundCountsPool); + CompoundCounts = MakeHolder<TCompoundCounts>(&CompoundCountsPool); CompoundCounts->reserve(maxcand); } |
