Skip to content

Commit

Permalink
Fix #766
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Romain committed Jul 4, 2024
1 parent a2903e6 commit ec3ff23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concaveman/concaveman.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ template<class T> class CircularElement
typedef CircularElement<T> type;
typedef type *ptr_type;

template<class... Args> CircularElement<T>(Args&&... args): m_data(std::forward<Args>(args)...)
template<class... Args> CircularElement(Args&&... args): m_data(std::forward<Args>(args)...)
{

}
Expand Down

0 comments on commit ec3ff23

Please sign in to comment.