clang-tidy example-app

This commit is contained in:
Shaun Reed 2025-03-08 09:27:39 -05:00
parent dcbeb26738
commit 1e1c328a5a
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ ExampleScene::ExampleScene(Qtk::Scene * scene) : Qtk::SceneInterface(scene) {
getCamera().getTransform().setRotation(-5.0f, 0.0f, 1.0f, 0.0f); getCamera().getTransform().setRotation(-5.0f, 0.0f, 1.0f, 0.0f);
} }
ExampleScene::~ExampleScene() {} ExampleScene::~ExampleScene() = default;
void ExampleScene::init() { void ExampleScene::init() {
auto skybox = new Qtk::Skybox("Skybox"); auto skybox = new Qtk::Skybox("Skybox");

View File

@ -13,7 +13,7 @@
class ExampleScene : public Qtk::SceneInterface { class ExampleScene : public Qtk::SceneInterface {
public: public:
ExampleScene(Qtk::Scene * scene); explicit ExampleScene(Qtk::Scene * scene);
~ExampleScene(); ~ExampleScene();