Skip to content
Snippets Groups Projects
Commit 2207baaa authored by Lioncash's avatar Lioncash
Browse files

ng_word: Deduplicate use of a constant value

We've already given the constant to the vector itself, so we don't need
to re-hardcode it in the array.
parent edd9bfd5
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ constexpr std::array<u8, 30> WORD_TXT{
VirtualDir NgWord1() {
std::vector<VirtualFile> files(NgWord1Data::NUMBER_WORD_TXT_FILES);
for (std::size_t i = 0; i < NgWord1Data::NUMBER_WORD_TXT_FILES; ++i) {
for (std::size_t i = 0; i < files.size(); ++i) {
files[i] = std::make_shared<ArrayVfsFile<NgWord1Data::WORD_TXT.size()>>(
NgWord1Data::WORD_TXT, fmt::format("{}.txt", i));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment