Skip to content

Commit 0af1c4a

Browse files
style: apply linter
1 parent e001351 commit 0af1c4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flakkari/Engine/EntityComponentSystem/SparseArrays.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ template <typename Component> class SparseArrays {
3434

3535
public:
3636
SparseArrays() = default;
37-
SparseArrays(const SparseArrays &other) : _data(other._data) {};
38-
SparseArrays(SparseArrays &&other) noexcept : _data(std::move(other._data)) {};
37+
SparseArrays(const SparseArrays &other) : _data(other._data){};
38+
SparseArrays(SparseArrays &&other) noexcept : _data(std::move(other._data)){};
3939
~SparseArrays() = default;
4040

4141
/**

0 commit comments

Comments
 (0)