John Wellbelove 7a8944224b
Add more features to etl::type_list (#1307)
* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Added etl::type_list to etl::observer

* Added etl::type_list to etl::nth_type

* Added missing 'typename' to type_list nth_type

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Added type_list definitions for nth_type and observer

* Added etl::type_list to etl::variant

* Updated comments

* Addedetl::type~_list to message_router, observer, visitor

# Conflicts:
#	include/etl/observer.h
#	test/vs2022/etl.vcxproj.filters

* Added member type_list type to tuple

* Work in progress

* Copy changes from other source

* Removed unused tests

* Fix iter_swap namespace

* Add type_list functionality to etl::variant using etl::variant_from_type_list

* Add type_list functionality to etl::message_packet using etl::message_packet_from_type_list

* Add type_list functionality to etl::message_router using etl::message_router_from_type_list

* Add type_list functionality to etl::observer using etl::observer_from_type_list

* Add type_list functionality to etl::tuple using etl::tuple_from_type_list

* Allow etl::make_index_sequence to be created from an etl::type_list

* Add type_list functionality to etl::visitor using etl::visitor_from_type_list

* Fix iter_swap namespace

* Allow creation of a message_packet with no message types

* Allow creation of a message_router with no message types

* Updated VS2022 project files

* Added missing test files CMakeLists.txt

* Fix C++03 compatibility

Fixed unused aregument warnings

* Synced message_packet generator to updated code

* Synced message_router generator to updated code

* Synced message_router generator to updated code

# Conflicts:
#	include/etl/generators/message_router_generator.h
#	include/etl/message_router.h

* Fixed missing zero message specialisation for <= C++14

* Fixed missing zero message specialisation for <= C++14

* Fix year_month arithmetic and correct chrono API behavior (#1257)

* Fix & add more tests for year_month arithmetic

* Minor addtions to previous commit

* More missing values to be uninitialized

* Update the default constructors to = default and correct default constructor tests accordingly

* Fix & add more tests for year_month arithmetic

* Minor addtions to previous commit

* More missing values to be uninitialized

* Update the default constructors to = default and correct default constructor tests accordingly

* Restore default constructor behavior for chrono calender

* Suppress warnings from std in optimized builds (#1259)

When testing with ./run-tests.sh 23 3 10, some warnings from
std surfaced which resulted in build errors.

* Add template deduction guide for span from vector (#1264)

* Create span from vector deduction

* Use ivector for deduction.  Add vector_ext to test

* Add vector pointer to test

* Finish tests

* Initialize pdata_ext and others

* Document how to implement platform specifics (#1262)

Some interfaces need to be implemented in every project
or platform using the ETL:

* etl_get_high_resolution_clock
* etl_get_system_clock
* etl_get_steady_clock
* etl_putchar

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Fix etl::as_bytes for etl::span<const T> (#1266)

A missing 'const' in the etl::as_bytes implementation was causing a
compile-time error when etl::as_bytes was called on a span of const
values.

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Remove some UB in test_vector_non_trivial.cpp (#1268)

Some of the tests' UB are detectable by Gcc15 and thus give a compile error due to warnings-as-error flag.

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Update C++26 deprecated constructs to ensure future standard compliance (#1267)

* Update C++26 deprecated constructs to ensure future standard compliance

I replaced std::is_trivial with a combination of std::is_trivially_default_constructible and std::is_trivially_copyable. Additionally, I added the required comma before the ellipsis in variadic functions to match updated language specifications.

* Some additional is_trivial related changes not found directly when compiling tests in C++26

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Fix return value of get_token_list (#1271)

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Fix etl::tuple template signature error in pair assignment operator (#1265)

* Fix etl::tuple template signature error in pair assignment operator

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update etl::tuple to explicitly use etl::pair or std::pair in assignment operator

* Added tests for etl::tuple assignment from pair

---------

Co-authored-by: Bryton Flecker <bflecker@swe.com>
Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Remove advance() on static spans (#1281)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Remove advance() on static spans

Since the size of a static span is constant, we can't reasonably
advance() on it.

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Add missing includes (#1286)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Add missing includes

Before this change, the includes needed to be done explicitly by
files using basic_string_stream.h, and be included first. This
was error prone, especially if includes are reordered (e.g. via
the currently defined clang-format rules).

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Move comparison operators of etl::expected to namespace etl (#1287)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Move comparison operators of etl::expected to namespace etl

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Make typed_storage constructor constexpr (#1291)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Make typed_storage constructor constexpr

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Add basic_format_arg constructor for ibasic_string (#1288)

* Allow string as format arg

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Added test string escaped

* Add temporary string test

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* QR Code for Github

* Added etl::visitor_from_type_list

* accepts(id) for empty router passes on to a sucessor

* Fixed incorrect comment from 'tuple' to 'message_router'

* PR review changes

* PR review changes

* Fixed internal constexptr flag in message_packet

* Fixed unused variable in unti test

* Added new type_list features

Added make_index_sequence_with_offset

* Renamed type_list_select_from_sequence to type_list_select_from_index_sequence

* Replaced type_list_size<TTypeList>::value with TTypeList::size internally for better clarity.

* Added etl::type_list_remove, etl::type_list_remove_if, etl::type_list_unique, etl::type_list_pop_front, etl::type_list_pop_back

* Add ref-qualifiers to basic_format_spec (#1292)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* feat: use ref-qualifiers for basic_format_spec

Converted the l-value methods to ref-qualified and also added r-value ref-qualified methods.

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Add support for size_t and unsigned long to etl::format (#1290)

* Remove AppVeyor build status badge

Removed AppVeyor build status badge from README.

* Update README.md

* Update CONTRIBUTING.md

Updated the instructions for contributing.

* Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277)

* Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`.

* Add support for size_t and unsigned long to etl::format

* Document list of supported types in etl::supported_format_types

* Add further types and tests for etl::format

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>

* Deduce underlying storage size when constructing string_ext from char[]. (#1269)

* Deduce underlying storage size when constructing string_ext from char[].

This removes the need for passing sizeof(storage) to the constructor.

* Add array constructors for the other string types.

- u16string_ext
- u32string_ext
- u8string_ext
- wstring_ext

* Add additional constructors to match existing API.

* Fix inconsistent test argument order.

---------

Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>

* Added etl::type_list_all_of, etl::type_list_any_of, and etl::type_list_none_of

* Added etl::type_list_is_unique

* Added type_list_is_empty

* indentation fix

* Fix merge error

* Renamed type_list_prepend & type_list_append to type_list_push_front & type_list_push_back respectively

* Added tests for make_index_sequence & make_index_sequence_with_offset

* Resolve coderabbit review issues

* Resolve coderabbit review issues

* Resolve coderabbit review issues

* Resolve coderabbit review issues

* Added  etl::type_list_indices_of_type which create an etl::index_sequence of all of the indexes of a specified type in an etl::type_list

* Updated comments

* Resolve coderabbit review issues

Added index_sequence utility to support type_list utilities. Added additional index_sequence utilities for completeness

* Added etl::index_sequence_cat, etl::index_sequence_pop_front, etl::index_sequence_pop_back, etl::index_sequence_at

* Fix 'unused variable' error in index_sequence tests

---------

Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.co.uk>
Co-authored-by: Sergei <sergej.shirokov@gmail.com>
Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com>
Co-authored-by: Bo Rydberg <2945606+bolry@users.noreply.github.com>
Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de>
Co-authored-by: Mike Bloom <91038685+mike919192@users.noreply.github.com>
Co-authored-by: taltenbach <92919739+taltenbach@users.noreply.github.com>
Co-authored-by: Bryton Flecker <fleckerbr@gmail.com>
Co-authored-by: Bryton Flecker <bflecker@swe.com>
Co-authored-by: Drew Rife <drew.rife95@gmail.com>
Co-authored-by: Marco Nilsson <marco@zyax.se>
2026-02-21 09:36:48 +00:00
..
Deprecated literal with suffix (#416) 2021-09-02 13:03:38 +01:00
etl_error_handler Remove -Wuseless-cast (#1110) 2025-05-30 11:41:07 +01:00
etl_initializer_list Remove -Wuseless-cast (#1110) 2025-05-30 11:41:07 +01:00
Performance/unordered_map literal with suffix (#416) 2021-09-02 13:03:38 +01:00
syntax_check Add etl::inplace_function (#1251) 2026-01-10 09:46:50 +01:00
UnitTest++ rise up cmake minimum required (#1066) 2025-04-30 16:47:39 +01:00
vs2022 Updated VS2022 project files 2026-01-28 17:46:10 +00:00
.gitattributes Changes merged from chrono updates 2025-04-18 11:30:43 +01:00
CMakeLists.txt Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
cppcheck_macro_definitions.txt Updates to chrono classes 2025-04-18 10:50:48 +01:00
data.h Sopporting changes for etl::tuple 2025-04-14 09:51:28 +01:00
etl_profile.h Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
iterators_for_unit_tests.h Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
list_header_files.bat Updated syntax checks 2024-08-21 18:48:56 +01:00
list_test_files.bat Updated syntax checks 2024-08-21 18:48:56 +01:00
list_test_files.ps1 Updated syntax checks 2024-08-21 18:48:56 +01:00
list_test_files.sh Updated syntax checks 2024-08-21 18:48:56 +01:00
main.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
maincpp03check.cpp Work in progress 2020-01-09 11:15:50 +00:00
meson.build Implementation of Base64 encoder and decoder 2024-06-24 17:44:53 +01:00
murmurhash3.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
murmurhash3.h Add free-standing sanity tests for C++03/11/14/17 (#351) 2021-03-12 14:13:31 +00:00
run-syntax-checks.sh Revert script to full scrolling terminal style 2025-12-23 07:04:31 +00:00
run-tests.sh Reverted scrolling changes on test script 2025-12-22 21:02:54 +00:00
test_algorithm.cpp Merge branch 'pull-request/#1245-Fix-discrepancy-with-STL-in-max_element-and-minmax_element' into development 2025-12-23 07:35:26 +00:00
test_alignment.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_array_view.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_array_wrapper.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_array.cpp Add constexpr to array comparison operators (#1303) 2026-02-19 13:18:12 +00:00
test_atomic.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC2152_decoder.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_base64_RFC2152_encoder.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC3501_decoder.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_base64_RFC3501_encoder.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC4648_decoder_with_no_padding.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_base64_RFC4648_decoder_with_padding.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_base64_RFC4648_encoder_with_no_padding.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC4648_encoder_with_padding.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC4648_URL_decoder_with_no_padding.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_base64_RFC4648_URL_decoder_with_padding.cpp Fixed multiple definition of 'expected' 2026-01-08 23:05:46 +01:00
test_base64_RFC4648_URL_encoder_with_no_padding.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_base64_RFC4648_URL_encoder_with_padding.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_binary.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bip_buffer_spsc_atomic.cpp Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) 2026-01-22 10:25:22 +01:00
test_bit_stream_reader_big_endian.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bit_stream_reader_little_endian.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bit_stream_writer_big_endian.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bit_stream_writer_little_endian.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bit_stream.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bit.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_legacy.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_new_comparisons.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_new_default_element_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_new_explicit_single_element_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_new_ext_default_element_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bitset_new_ext_explicit_single_element_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bloom_filter.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bresenham_line.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_bsd_checksum.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_buffer_descriptors.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_byte_stream.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_byte.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_callback_service.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_callback_timer_atomic.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_callback_timer_deferred_locked.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_callback_timer_interrupt.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_callback_timer_locked.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_callback_timer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_char_traits.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_checksum.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_clocks.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_day.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_chrono_duration.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_hh_mm_ss.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_literals.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_month_day_last.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_month_day.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_month_weekday_last.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_month_weekday.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_month.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_chrono_operators.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_time_point.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_weekday_indexed.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_weekday_last.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_chrono_weekday.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_year_month_day_last.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_year_month_day.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_chrono_year_month_weekday_last.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_year_month_weekday.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_chrono_year_month.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_chrono_year.cpp Fix year_month arithmetic and correct chrono API behavior (#1257) 2026-02-03 08:59:46 +00:00
test_circular_buffer_external_buffer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_circular_buffer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_circular_iterator.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_closure_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_closure.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_compare.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_concepts.cpp Disabled header include if <C++20 2025-12-22 10:04:14 +00:00
test_const_map_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_map_ext_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_map_ext.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_map.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multimap_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multimap_ext_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multimap_ext.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multimap.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multiset_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multiset_ext_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multiset_ext.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_multiset.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_set_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_set_ext_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_set_ext.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_const_set.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_constant.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_container.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_correlation.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_covariance.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc1.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_ccitt.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_cdma2000.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_darc.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_dvbs2.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_ebu.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_icode.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_itu.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_j1850_zero.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_j1850.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_maxim.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_nrsc5.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_opensafety.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_rohc.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc8_wcdma.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_a.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_arc.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_aug_ccitt.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_buypass.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_ccitt.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_cdma2000.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_dds110.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_dectr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_dectx.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_dnp.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_en13757.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_genibus.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_kermit.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_m17.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_maxim.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_mcrf4xx.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_modbus.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_opensafety_a.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_opensafety_b.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_profibus.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_riello.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_t10dif.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_teledisk.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_tms37157.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_usb.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_x25.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16_xmodem.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc16.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_bzip2.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_c.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_d.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_jamcrc.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_mpeg2.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_posix.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_q.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32_xfer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc32.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc64_ecma.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_crc64_iso.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_cyclic_value.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_debounce.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate_cpp03.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate_observable.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate_service_compile_time.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate_service_cpp03.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate_service.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_delegate.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_deque.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_endian.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_enum_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_error_handler.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_etl_assert.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_etl_traits.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_exception.cpp Removed redundant semicolon from TEST_SUITE block 2025-12-22 10:04:07 +00:00
test_expected.cpp Formatting updates 2025-12-22 10:04:09 +00:00
test_fixed_iterator.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_fixed_sized_memory_block_allocator.cpp Array bounds and maybe-uninitialized warning fixes 2023-03-02 13:15:42 +00:00
test_flags.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_flat_map.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_flat_multimap.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_flat_multiset.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_flat_set.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_fnv_1.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_format_spec.cpp Add ref-qualifiers to basic_format_spec (#1292) 2026-02-09 11:07:12 +00:00
test_format.cpp Add support for size_t and unsigned long to etl::format (#1290) 2026-02-09 11:07:13 +00:00
test_forward_list_shared_pool.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_forward_list.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_fsm.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_function_traits.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_function.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_functional.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_gamma.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_hash.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_hfsm_recurse_to_inner_state_on_start.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_hfsm_transition_on_enter.cpp Catch reentrant calls to FSM and HFSM start, receive, etc. (#1202) 2025-11-29 09:54:17 +00:00
test_hfsm.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_histogram.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_index_of_type.cpp Added etl::index_of_type as a complement to etl::nth_type 2025-03-27 15:24:38 +00:00
test_indirect_vector_external_buffer.cpp Indirect vector checks (#1239) 2026-01-01 09:56:25 +00:00
test_indirect_vector.cpp Indirect vector checks (#1239) 2026-01-01 09:56:25 +00:00
test_inplace_function.cpp Add etl::inplace_function (#1251) 2026-01-10 09:46:50 +01:00
test_instance_count.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_integral_limits.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_intrusive_forward_list.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_intrusive_links.cpp Fix link rotations for etl::tree_node (#1299) 2026-02-18 20:46:21 +00:00
test_intrusive_list.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_intrusive_queue.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_intrusive_stack.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_invert.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_invoke.cpp Add etl::inplace_function (#1251) 2026-01-10 09:46:50 +01:00
test_io_port.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_is_invocable.cpp Add etl::inplace_function (#1251) 2026-01-10 09:46:50 +01:00
test_iterator.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_jenkins.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_largest.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_limiter.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_limits.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_list_shared_pool.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_list.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_macros.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_make_string.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_map.cpp Make code base with tests compile under gcc-14 (#1254) 2026-01-08 22:58:27 +01:00
test_math_functions.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_math.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_mean.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_mem_cast_ptr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_mem_cast.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_memory.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_broker.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_bus.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_packet.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_message_router_registry.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_router.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_message_timer_atomic.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_timer_interrupt.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_timer_locked.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message_timer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_message.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_multi_array.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_multi_range.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_multi_span.cpp Bugfixes for compile errors in optimized tests (#1235) 2025-12-22 10:04:06 +00:00
test_multi_vector.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_multimap.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_multiset.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_murmur3.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_not_null_pointer_constexpr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_not_null_pointer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_not_null_unique_pointer.cpp Added constexpr. Removed some member functions. Removed 'move' member functions for etl::not_null<etl::unique_ptr<T, TDeleter>> 2025-08-18 16:51:49 +01:00
test_nth_type.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_numeric.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_observer.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_optional.cpp implement .begin() and .end() for etl::optional (#1246) 2025-12-26 07:25:33 +00:00
test_overload.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_packet.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_parameter_pack.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_parameter_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_parity_checksum.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_pearson.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_poly_span_dynamic_extent.cpp Removed float-equal warnings 2023-11-21 15:13:24 +00:00
test_poly_span_fixed_extent.cpp Removed float-equal warnings 2023-11-21 15:13:24 +00:00
test_pool_external_buffer.cpp Fixed shadow warnings in all files 2024-01-25 14:22:26 +00:00
test_pool.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_print.cpp Add etl::format (#1204) 2025-12-22 10:04:15 +00:00
test_priority_queue.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_pseudo_moving_average.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_quantize.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_lockable_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_lockable.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_memory_model_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_mpmc_mutex_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_mpmc_mutex.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_atomic_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_atomic.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_isr_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_isr.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_locked_small.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue_spsc_locked.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_queue.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_random.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_ratio.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_reference_flat_map.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_reference_flat_multimap.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_reference_flat_multiset.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_reference_flat_set.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_rescale.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_result.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_rms.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_rounded_integral_division.cpp Bugfixes for compile errors in optimized tests (#1235) 2025-12-22 10:04:06 +00:00
test_scaled_rounding.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_set.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_shared_message.cpp #854 in-place construction of shared message 2024-03-09 10:11:00 +00:00
test_signal.cpp Rebased on development 2025-09-20 11:25:09 +01:00
test_singleton_base.cpp Updates to singleton_base 2025-01-21 17:48:35 +00:00
test_singleton.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_smallest.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_span_dynamic_extent.cpp Fix etl::as_bytes for etl::span<const T> (#1266) 2026-02-03 08:59:49 +00:00
test_span_fixed_extent.cpp Fix etl::as_bytes for etl::span<const T> (#1266) 2026-02-03 08:59:49 +00:00
test_stack.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_standard_deviation.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_state_chart_compile_time_with_data_parameter.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_state_chart_compile_time.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_state_chart_with_data_parameter.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_state_chart_with_rvalue_data_parameter.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_state_chart.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_char_external_buffer.cpp Deduce underlying storage size when constructing string_ext from char[]. (#1269) 2026-02-09 11:07:13 +00:00
test_string_char.cpp Bugfixes for compile errors in optimized tests (#1235) 2025-12-22 10:04:06 +00:00
test_string_stream_u8.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_stream_u16.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_stream_u32.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_stream_wchar_t.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_stream.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_u8_external_buffer.cpp Deduce underlying storage size when constructing string_ext from char[]. (#1269) 2026-02-09 11:07:13 +00:00
test_string_u8.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_u16_external_buffer.cpp Deduce underlying storage size when constructing string_ext from char[]. (#1269) 2026-02-09 11:07:13 +00:00
test_string_u16.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_u32_external_buffer.cpp Deduce underlying storage size when constructing string_ext from char[]. (#1269) 2026-02-09 11:07:13 +00:00
test_string_u32.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_std_u8.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_std_u16.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_std_u32.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_std_wchar_t.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_std.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_u8.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_u16.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_u32.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities_wchar_t.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_utilities.cpp Fix return value of get_token_list (#1271) 2026-02-03 08:59:51 +00:00
test_string_view.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_string_wchar_t_external_buffer.cpp Deduce underlying storage size when constructing string_ext from char[]. (#1269) 2026-02-09 11:07:13 +00:00
test_string_wchar_t.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_successor.cpp Update C++26 deprecated constructs to ensure future standard compliance (#1267) 2026-02-03 08:59:50 +00:00
test_task_scheduler.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_threshold.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_to_arithmetic_u8.cpp #787 etl::expected doesn't compile with ETL_LOG_ERRORS 2023-11-24 09:59:35 +00:00
test_to_arithmetic_u16.cpp #787 etl::expected doesn't compile with ETL_LOG_ERRORS 2023-11-24 09:59:35 +00:00
test_to_arithmetic_u32.cpp #787 etl::expected doesn't compile with ETL_LOG_ERRORS 2023-11-24 09:59:35 +00:00
test_to_arithmetic_wchar_t.cpp #787 etl::expected doesn't compile with ETL_LOG_ERRORS 2023-11-24 09:59:35 +00:00
test_to_arithmetic.cpp #1126 to_arithmetic does not compile on C++98 2025-07-19 15:54:06 +01:00
test_to_string.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_to_u8string.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_to_u16string.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_to_u32string.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_to_wstring.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_tuple.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_type_def.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_type_list.cpp Add more features to etl::type_list (#1307) 2026-02-21 09:36:48 +00:00
test_type_lookup.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_type_select.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_type_traits.cpp Added concepts.h and tests (#1213) 2025-12-22 10:04:13 +00:00
test_unaligned_type_ext.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_unaligned_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_uncopyable.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_unordered_map.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_unordered_multimap.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_unordered_multiset.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_unordered_set.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_user_type.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_utility.cpp Add more features to etl::type_list (#1307) 2026-02-21 09:36:48 +00:00
test_variance.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_variant_legacy.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_variant_pool_external_buffer.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_variant_pool.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_variant_variadic.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_vector_external_buffer.cpp ivector swap (#1256) 2026-01-11 18:05:21 +01:00
test_vector_non_trivial.cpp Remove some UB in test_vector_non_trivial.cpp (#1268) 2026-02-03 08:59:49 +00:00
test_vector_pointer_external_buffer.cpp ivector swap (#1256) 2026-01-11 18:05:21 +01:00
test_vector_pointer.cpp ivector swap (#1256) 2026-01-11 18:05:21 +01:00
test_vector.cpp ivector swap (#1256) 2026-01-11 18:05:21 +01:00
test_visitor.cpp Add etl::type_list API to more classes. (#1275) 2026-02-19 12:41:48 +00:00
test_xor_checksum.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
test_xor_rotate_checksum.cpp Fixed all 'extra semicolon' warnings 2025-12-16 09:15:26 +00:00
unit_test_framework.h Bugfixes for compile errors in optimized tests (#1235) 2025-12-22 10:04:06 +00:00
words.txt New hash & checksum algorithms 2015-08-19 21:00:53 +01:00