From a4eaaab61610479b450455a10c0f22821aa61b97 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Mon, 11 Jan 2021 15:07:08 -0500 Subject: [PATCH] Switch to std::array temporarily Until https://github.com/devosoft/Empirical/issues/408 is resolved --- include/uitsl/datastructs/PodLeafNode.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/uitsl/datastructs/PodLeafNode.hpp b/include/uitsl/datastructs/PodLeafNode.hpp index c6610bd5b3..2ac9fe6dbb 100644 --- a/include/uitsl/datastructs/PodLeafNode.hpp +++ b/include/uitsl/datastructs/PodLeafNode.hpp @@ -11,7 +11,8 @@ namespace uitsl { template class PodLeafNode { - emp::array data{}; + // TODO swtich back to emp::array after https://github.com/devosoft/Empirical/issues/408 is resolved + std::array data{}; public: