Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeriiKoniushenko committed Oct 20, 2023
1 parent 21b55f5 commit 5ee0fd2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/core/shapes/include/InstancedWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ class InstancedWidget : public InstancedDrawAble, public JsonPrintable, public U

InstancedWidget() = default;

InstancedWidget(const InstancedWidget& other) = default;

InstancedWidget& operator=(const InstancedWidget& other) = default;

InstancedWidget(InstancedWidget&& other) noexcept;

InstancedWidget& operator=(InstancedWidget&& other) noexcept;
Expand Down

0 comments on commit 5ee0fd2

Please sign in to comment.