Skip to content

Commit

Permalink
Fix for esp32 boards (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomstewart89 authored Jul 9, 2024
1 parent 0667583 commit 399597b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ElementStorage.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct HorizontalConcat : public MatrixBase<HorizontalConcat<LeftType, RightType
const LeftType &left;
const RightType &right;

HorizontalConcat<LeftType, RightType>(const LeftType &l, const RightType &r) : left(l), right(r) {}
HorizontalConcat(const LeftType &l, const RightType &r) : left(l), right(r) {}

typename LeftType::DType operator()(int row, int col) const
{
Expand All @@ -148,7 +148,7 @@ struct VerticalConcat : public MatrixBase<VerticalConcat<TopType, BottomType>, T
const TopType &top;
const BottomType &bottom;

VerticalConcat<TopType, BottomType>(const TopType &t, const BottomType &b) : top(t), bottom(b) {}
VerticalConcat(const TopType &t, const BottomType &b) : top(t), bottom(b) {}

typename TopType::DType operator()(int row, int col) const
{
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=BasicLinearAlgebra
version=5.0
version=5.1
author=Tom Stewart <[email protected]>
maintainer=Tom Stewart <[email protected]>
sentence=A library for representing matrices and doing matrix math on arduino
Expand Down

0 comments on commit 399597b

Please sign in to comment.