[olympic] Cleanup

This commit is contained in:
Gary Talent 2024-12-06 00:22:33 -06:00
parent a6e24ff2b6
commit c51a45e1ba
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ ox::Error run(
ox::StringView project,
ox::StringView appName,
ox::StringView projectDataDir,
ox::SpanView<char const*> argv) noexcept;
ox::SpanView<ox::CString> argv) noexcept;
namespace OLYMPIC_PROJECT_NAMESPACE {
void registerKeelModules() noexcept;

View File

@ -101,6 +101,6 @@ ox::Error run(
[[maybe_unused]] ox::StringView project,
[[maybe_unused]] ox::StringView appName,
ox::StringView projectDataDir,
ox::SpanView<char const*> argv) noexcept {
ox::SpanView<ox::CString> argv) noexcept {
return ::run(argv, projectDataDir);
}

View File

@ -71,6 +71,6 @@ ox::Error run(
ox::StringView project,
ox::StringView appName,
ox::StringView projectDataDir,
ox::SpanView<char const*> args) noexcept {
ox::SpanView<ox::CString> args) noexcept {
return studio::run(ox::sfmt("{} {}", project, appName), projectDataDir, args);
}