diff options
Diffstat (limited to 'src/RunStyles.cxx')
-rw-r--r-- | src/RunStyles.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/RunStyles.cxx b/src/RunStyles.cxx index f3939bbd2..6dbfb4c4b 100644 --- a/src/RunStyles.cxx +++ b/src/RunStyles.cxx @@ -76,8 +76,8 @@ void RunStyles<DISTANCE, STYLE>::RemoveRunIfSameAsPrevious(DISTANCE run) { template <typename DISTANCE, typename STYLE> RunStyles<DISTANCE, STYLE>::RunStyles() { - starts.reset(new Partitioning<DISTANCE>(8)); - styles.reset(new SplitVector<STYLE>()); + starts = std::make_unique<Partitioning<DISTANCE>>(8); + styles = std::make_unique<SplitVector<STYLE>>(); styles->InsertValue(0, 2, 0); } @@ -212,8 +212,8 @@ void RunStyles<DISTANCE, STYLE>::InsertSpace(DISTANCE position, DISTANCE insertL template <typename DISTANCE, typename STYLE> void RunStyles<DISTANCE, STYLE>::DeleteAll() { - starts.reset(new Partitioning<DISTANCE>(8)); - styles.reset(new SplitVector<STYLE>()); + starts = std::make_unique<Partitioning<DISTANCE>>(8); + styles = std::make_unique<SplitVector<STYLE>>(); styles->InsertValue(0, 2, 0); } |