From 2c3fd20a0c482d55696ae733bed67ff18b2c7130 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 8 Dec 2020 23:26:57 -0600 Subject: [PATCH] chore(tidy): remove superfluous voids --- storm/array/TSBaseArray.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storm/array/TSBaseArray.hpp b/storm/array/TSBaseArray.hpp index ab91f04..aa1768b 100644 --- a/storm/array/TSBaseArray.hpp +++ b/storm/array/TSBaseArray.hpp @@ -15,8 +15,8 @@ class TSBaseArray { virtual int32_t MemLineNo() const; T& operator[](uint32_t i); - uint32_t Count(void) const; - void Clear(void); + uint32_t Count() const; + void Clear(); }; template