From 6efff35836dce87a3542cbd106ab1a147b65070e Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 8 Dec 2020 23:28:54 -0600 Subject: [PATCH] fix(array): remove unimplemented function call --- storm/array/TSBaseArray.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/storm/array/TSBaseArray.hpp b/storm/array/TSBaseArray.hpp index aa1768b..ea008af 100644 --- a/storm/array/TSBaseArray.hpp +++ b/storm/array/TSBaseArray.hpp @@ -21,7 +21,6 @@ class TSBaseArray { template T& TSBaseArray::operator[](uint32_t i) { - this->CheckArrayBounds(i); return this->m_data[i]; }