Skip to content

Commit

Permalink
Switch to std::array temporarily
Browse files Browse the repository at this point in the history
Until devosoft/Empirical#408 is resolved
  • Loading branch information
mmore500 committed Jan 11, 2021
1 parent 2e3029b commit a4eaaab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/uitsl/datastructs/PodLeafNode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ namespace uitsl {
template<typename T, size_t N=1>
class PodLeafNode {

emp::array<T, N> data{};
// TODO swtich back to emp::array after https://github.com/devosoft/Empirical/issues/408 is resolved
std::array<T, N> data{};

public:

Expand Down

0 comments on commit a4eaaab

Please sign in to comment.