Codechange: use smart pointers when creating StringIterators

This commit is contained in:
Rubidium
2023-01-13 17:55:43 +01:00
committed by rubidium42
parent b35c791d05
commit b951332def
6 changed files with 15 additions and 18 deletions

View File

@@ -33,7 +33,7 @@ public:
size_t Next(IterType what) override;
size_t Prev(IterType what) override;
static StringIterator *Create();
static std::unique_ptr<StringIterator> Create();
};
/**