[nostalgia] Style cleanup
All checks were successful
Build / build (push) Successful in 1m14s

This commit is contained in:
Gary Talent 2025-05-17 17:31:47 -05:00
parent ee7d5c6d51
commit c424bde06d
7 changed files with 28 additions and 28 deletions

View File

@ -8,6 +8,6 @@
namespace nostalgia::gfx {
const keel::Module *keelModule() noexcept;
keel::Module const *keelModule() noexcept;
}

View File

@ -8,6 +8,6 @@
namespace nostalgia::gfx {
const studio::Module *studioModule() noexcept;
studio::Module const *studioModule() noexcept;
}

View File

@ -8,6 +8,6 @@
namespace nostalgia::sound {
const keel::Module *keelModule() noexcept;
keel::Module const *keelModule() noexcept;
}

View File

@ -8,6 +8,6 @@
namespace nostalgia::sound {
const studio::Module *studioModule() noexcept;
studio::Module const *studioModule() noexcept;
}

View File

@ -10,32 +10,30 @@
namespace nostalgia::sound {
static class: public keel::Module {
private:
static struct: keel::Module {
public:
[[nodiscard]]
ox::String id() const noexcept override {
return ox::String{"net.drinkingtea.nostalgia.sound"};
}
[[nodiscard]]
ox::String id() const noexcept override {
return ox::String{"net.drinkingtea.nostalgia.sound"};
}
[[nodiscard]]
ox::Vector<keel::TypeDescGenerator> types() const noexcept final {
return {
};
}
[[nodiscard]]
ox::Vector<keel::TypeDescGenerator> types() const noexcept final {
return {
};
}
[[nodiscard]]
ox::Vector<keel::Converter> converters() const noexcept final {
return {
};
}
[[nodiscard]]
ox::Vector<keel::Converter> converters() const noexcept final {
return {
};
}
[[nodiscard]]
ox::Vector<keel::PackTransform> packTransforms() const noexcept final {
return {
};
}
[[nodiscard]]
ox::Vector<keel::PackTransform> packTransforms() const noexcept final {
return {
};
}
} const mod;

View File

@ -8,7 +8,8 @@
namespace nostalgia::sound {
static class: public studio::Module {
static struct: studio::Module {
ox::Vector<studio::EditorMaker> editors(studio::Context&) const noexcept final {
return {
};
@ -18,6 +19,7 @@ static class: public studio::Module {
ox::Vector<ox::UPtr<studio::ItemMaker>> out;
return out;
}
} const mod;
const studio::Module *studioModule() noexcept {

View File

@ -52,7 +52,7 @@ static int testUpdateHandler(turbine::Context &tctx) noexcept {
}
[[maybe_unused]]
static void testKeyEventHandler(turbine::Context &tctx, turbine::Key key, bool down) noexcept {
static void testKeyEventHandler(turbine::Context &tctx, turbine::Key const key, bool const down) noexcept {
if (down) {
if (key == turbine::Key::Alpha_Q) {
turbine::requestShutdown(tctx);