Skip to content

Commit

Permalink
Fix syntax when using c++03 or ETL_FORCE_NO_ADVANCED_CPP
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachOB committed Jan 21, 2025
1 parent f26e1d4 commit 6cefee0
Show file tree
Hide file tree
Showing 2 changed files with 308 additions and 287 deletions.
4 changes: 2 additions & 2 deletions include/etl/frame_check_sequence.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ namespace etl
//*************************************************************************
/// Default constructor.
//*************************************************************************
ETL_CONSTEXPR14 frame_check_sequence() : frame_check{}
ETL_CONSTEXPR14 frame_check_sequence() : frame_check()
{
reset();
}
Expand All @@ -118,7 +118,7 @@ namespace etl
/// \param end End of the range.
//*************************************************************************
template<typename TIterator>
ETL_CONSTEXPR14 frame_check_sequence(TIterator begin, const TIterator end) : frame_check{}
ETL_CONSTEXPR14 frame_check_sequence(TIterator begin, const TIterator end) : frame_check()
{
ETL_STATIC_ASSERT(sizeof(typename etl::iterator_traits<TIterator>::value_type) == 1, "Type not supported");

Expand Down
Loading

0 comments on commit 6cefee0

Please sign in to comment.