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 a4eaaab commit bf3d2b4
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 @@ -125,7 +125,8 @@ class PodLeafNode {

auto end() const { return std::end( data ); }

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

};

Expand Down

0 comments on commit bf3d2b4

Please sign in to comment.