Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg committed Feb 23, 2024
1 parent 2c109ac commit 88b8a4c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions package/cpp/core/ViewWrapper.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#include "ViewWrapper.h"

namespace margelo {
ViewWrapper::~ViewWrapper() {
_view = nullptr;
}

void ViewWrapper::loadHybridMethods() {
registerHybridSetter("scene", &ViewWrapper::setScene, this);
Expand Down
1 change: 0 additions & 1 deletion package/cpp/core/ViewWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ using namespace filament;
class ViewWrapper : public HybridObject {
public:
explicit ViewWrapper(std::shared_ptr<View> view) : _view(view) {}
~ViewWrapper();

void loadHybridMethods() override;

Expand Down
2 changes: 0 additions & 2 deletions package/cpp/core/utils/EntityWrapper.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#include "EntityWrapper.h"

margelo::EntityWrapper::~EntityWrapper() {}

void margelo::EntityWrapper::loadHybridMethods() {}
1 change: 0 additions & 1 deletion package/cpp/core/utils/EntityWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ using namespace utils;
class EntityWrapper : public HybridObject {
public:
explicit EntityWrapper(Entity entity) : entity(entity) {}
~EntityWrapper();

void loadHybridMethods() override;

Expand Down

0 comments on commit 88b8a4c

Please sign in to comment.