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 c642ee3 commit 716021cCopy full SHA for 716021c
src/base/tl/ic_array.h
@@ -12,8 +12,6 @@ class icArray
12
constexpr icArray(std::initializer_list<T> list);
13
icArray(T (&Array)[StackCapacity]);
14
15
- icArray &operator=(const icArray &Array) = default;
16
-
17
const T &At(std::size_t Index) const { return m_Data[Index]; }
18
T operator[](std::size_t Index) const { return m_Data[Index]; }
19
T &operator[](std::size_t Index) { return m_Data[Index]; }
0 commit comments