We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e001351 commit 0af1c4aCopy full SHA for 0af1c4a
Flakkari/Engine/EntityComponentSystem/SparseArrays.hpp
@@ -34,8 +34,8 @@ template <typename Component> class SparseArrays {
34
35
public:
36
SparseArrays() = default;
37
- SparseArrays(const SparseArrays &other) : _data(other._data) {};
38
- SparseArrays(SparseArrays &&other) noexcept : _data(std::move(other._data)) {};
+ SparseArrays(const SparseArrays &other) : _data(other._data){};
+ SparseArrays(SparseArrays &&other) noexcept : _data(std::move(other._data)){};
39
~SparseArrays() = default;
40
41
/**
0 commit comments