[keel,nostalgia/tools,studio] Convert some pointers to references

This commit is contained in:
2023-12-03 22:48:30 -06:00
parent 26a2d340d6
commit 1505d7ea37
8 changed files with 29 additions and 29 deletions

View File

@@ -44,7 +44,7 @@ static ox::Result<ox::Buffer> readFileBuff(ox::StringView path) noexcept {
static ox::Error generateTypes(ox::TypeStore *ts) noexcept {
for (const auto mod : keel::modules()) {
for (auto gen : mod->types()) {
oxReturnError(gen(ts));
oxReturnError(gen(*ts));
}
}
return {};