Skip to content

Commit 716021c

Browse files
committed
icArray: Drop 'user-provided' operator=()
1 parent c642ee3 commit 716021c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/base/tl/ic_array.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ class icArray
1212
constexpr icArray(std::initializer_list<T> list);
1313
icArray(T (&Array)[StackCapacity]);
1414

15-
icArray &operator=(const icArray &Array) = default;
16-
1715
const T &At(std::size_t Index) const { return m_Data[Index]; }
1816
T operator[](std::size_t Index) const { return m_Data[Index]; }
1917
T &operator[](std::size_t Index) { return m_Data[Index]; }

0 commit comments

Comments
 (0)